<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>品牌列表案例</title>
<link rel="stylesheet" href="./lib/bootstrap.css">
<link rel="stylesheet" href="./css/brandlist.css">
</head>
<body>
<div id="app">
<div class="card">
<div class="card-header">
添加品牌
</div>
<div class="card-body">
<form @submit.prevent="add">
<div class="form-row align-items-center">
<div class="col-auto">
<div class="input-group mb-2">
<div class="input-group-prepend">
<div class="input-group-text">品牌名称</div>
</div>
<input type="text" class="form-control" placeholder="请输入品牌名称" v-model.trim="brand">
</div>
</div>
<div class="col-auto">
<button type="submit" class="btn btn-primary mb-2">添加</button>
</div>
</div>
</form>
</div>
</div>
<table class="table table-bordered table-hover table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">品牌名称</th>
<th scope="col">状态</th>
<th scope="col">创建时间</th>
<th scope="col">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="list in lists" :key="list.id">
<td>{{ list.id }}</td>
<td>{{ list.name }}</td>
<td>
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" :id="'cd'+list.id" v-model="list.status">
<label class="custom-control-label" :for="'cd'+list.id" v-if="list.status">已启用</label>
<label class="custom-control-label" :for="'cd'+list.id" v-else="list.status">已禁用</label>
</div>
</td>
<td>{{ list.time }}</td>
<td>
<a href="javascript:;" @click="remove(list.id)">删除</a>
</td>
</tr>
</tbody>
</table>
</div>
<script src="./lib/vue-2.6.12.js"></script>
<script>
const vm = new Vue({
el: '#app',
data: {
brand: '',
lists: [
{ id: 1, name: '宝马', status: true, time: new Date() },
{ id: 2, name: '奥迪', status: false, time: new Date() },
{ id: 3, name: '奔驰', status: true, time: new Date() },
]
},
methods: {
remove(id) {
console.log(id);
this.lists = this.lists.filter(list => list.id !== id);
},
add() {
if (this.brand === '') {
alert('请填写品牌名称!');
return;
} else {
const obj = {
id: this.lists.length + 1,
name: this.brand,
status: true,
time: new Date()
}
this.lists.push(obj);
this.brand = '';
}
}
}
})
</script>
</body>
</html>
body {
padding: 15px;
user-select: none;
}
body {
padding: 15px;
user-select: none;
}