<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.wrapper {
width: 800px;
margin: 20px auto;
}
.operation {
margin-bottom: 10px;
text-align: center;
line-height: 20px;
font-size: 18px;
}
.operation input {
padding: 5px;
border: 1px solid deepskyblue;
}
.operation button {
border-radius: 3px;
background-color: deepskyblue;
}
.search {
text-align: left;
line-height: 20px;
font-size: 18px;
}
.search input {
padding: 5px;
border: 1px solid deeppink;
}
#tb{
width: 800px;
border-collapse: collapse;
margin: 20px auto;
}
#tb th{
background-color: #0094ff;
color:white;
font-size: 16px;
padding: 5px;
text-align: center;
border: 1px solid black;
}
#tb td{
padding: 5px;
text-align: center;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="app" class="wrapper">
<div class="operation">
<input type="text" placeholder="请输入编号" v-model="newGoods.id">
<input type="text" placeholder="请输入名称" v-model="newGoods.name">
<button type="button" v-on:click="addGoods">添加数据</button>
</div>
<!-- <div class="search">
<input type="text" placeHolder="请输入筛选内容">
</div> -->
<table id="tb">
<tr>
<th>编号</th>
<th>名称</th>
<th>创建时间</th>
<th>操作</th>
</tr>
<!-- 没有数据才显示, 有数据隐藏 -->
<tr v-if="goodsList.length == 0">
<td colspan="4">列表无数据</td>
</tr>
<!-- 渲染商品列表 -->
<tr v-for="item in goodsList">
<td>{{ item.id }}</td>
<td>{{ item.name }}</td>
<td>{{ item.ctime }}</td>
<td>
<!-- @符号是v-on的简写方式 -->
<a href="#" @click="deleteGoods(item.id)">删除</a>
</td>
</tr>
</table>
</div>
<script src="vue.js"></script>
<script>
new Vue({
el: '#app',
data: {
// 商品列表
goodsList: [
{ id: 1, name: '法拉利', ctime: new Date() },
{ id: 2, name: '玛莎拉蒂', ctime: new Date() },
{ id: 3, name: '兰博基尼', ctime: new Date() }
],
// 新商品数据
newGoods: {
id: '',
name: ''
}
},
methods: {
// 点击添加按钮, 拿到两个表单的值, 组成一个商品对象push到商品列表中, 视图会自动更新
addGoods() {
// 添加商品
this.goodsList.push({
id: this.newGoods.id,
name: this.newGoods.name,
ctime: new Date()
});
// 清空表单数据
this.newGoods.id = '';
this.newGoods.name = '';
},
// 删除商品, 需要拿到要删除商品的id
deleteGoods(id) {
// 方式一: 遍历商品列表依次与id比较, 找到要删除的商品删除
// for(var i = 0; i < this.goodsList.length; i++) {
// if(this.goodsList[i].id == id) {
// this.goodsList.splice(i, 1);
// }
// }
// 方式二: 使用filter方法实现
// this.goodsList = this.goodsList.filter(function(goods, i) {
// return goods.id != id; // 不删除的商品留下
// });
this.goodsList = this.goodsList.filter(goods => goods.id != id);
}
}
});
</script>
</body>
</html>
01_21.商品数据删除
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 小学语文修改病句的方法 修改病句是小学语文考试中常见的题型,在修改病句之前,我们应该清晰的了解有哪些病句现象,下面...