Html

<!DOCTYPE html>
<html lang="en"> <head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./main.css"> </head>
<div id="app">
<div v-if="books.length">
<table>
<thead>
<tr>
<th></th>
<th>书籍名称</th>
<th>出版日期</th>
<th>价格</th>
<th>购买数量</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in books">
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.data}}</td>
<!-- <td>{{getFinalPrice(item.price)}}</td> -->
<td>{{item.price| showPrice}}</td>
<td>
<button @click="inc(index)" :disabled="item.count <=1 ">-</button>
{{item.count}}
<button @click="add(index)">+</button>
</td>
<td><button @click="removeHandle(index)">移除</button></td>
</tr>
</tbody>
</table>
<h2>总价格:{{totalPrice|showPrice}}</h2>
</div>
<h2 v-else>购物车为空</h2>
</div> <body>
<script src="../js/vue.js"></script>
<script src="./main.js"></script>
</body> </html>

CSS

table{
border:1px solid #000;
border-collapse: collapse;
border-spacing: 0;
}
th,td{
padding: 8px 16px;
border:1px solid #000;
text-align:left;
}
th{
background-color: #f7f7f7;
color:#5c6b77;
font-weight:600px;
}

JavaScript

const app = new Vue({
el: '#app',
data: () => ({
books: [
{
id: 1,
name: '《算法导论》',
data: "2018-09-25",
price: 89.00,
count: 1
},
{
id: 2,
name: '《UNIX编程艺术》',
data: "2018-09-25",
price: 89.00,
count: 1
},
{
id: 3,
name: '《编程珠玑》',
data: "2018-09-25",
price: 89.00,
count: 1
},
{
id: 4,
name: '《JavaScript高级算法》',
data: "2018-09-25",
price: 89.00,
count: 1
},
{
id: 5,
name: '《C++》',
data: "2018-09-25",
price: 89.00,
count: 1
}
],
}),
computed: {
totalPrice: function () {
// 1、
// let totalPrice = 0
// for (let i = 0; i < this.books.length; i++) {
// totalPrice +=this.books[i].price * this.books[i].count
// }
// return totalPrice // 2、
// let totalPrice = 0;
// for (let i in this.books) {
// totalPrice += this.books[i].price * this.books[i].count
// }
// return totalPrice // 3、
let totalPrice = 0
for (let item of this.books) {
totalPrice += item.price * item.count
}
return totalPrice
} },
methods: {
// getFinalPrice: (price) => {
// return '¥' + price.toFixed(2)
// }
add: function (index) {
this.books[index].count++
},
inc: function (index) { this.books[index].count--
},
removeHandle: function (index) {
this.books.splice(index, 1)
}
},
filters: {
showPrice: function (price) {
return '¥' + price.toFixed(2)
}
}
})

注:文件文件位置

最新文章

  1. Xen之初体验:HA(额外附加)
  2. Scope 安装和使用
  3. 初始化Git的配置
  4. mysql TIMESTAMP 报错
  5. dreamwaver cs6 主题配色方案
  6. 基于mini2440的boa服务器移植
  7. 深入理解php的MySQL连接类
  8. jquery获取元素到屏幕底的可视距离
  9. linux下安卓编译apk环境搭建
  10. 【科普】什么是TLS1.3
  11. js中reduce()用法
  12. 题解-HAOI2018全套
  13. InfluxDB服务器启动流程
  14. Docker Images for MySQL Group Replication 5.7.14
  15. 《高性能Mysql》讲聚簇索引
  16. Session失效后所有Ajax请求跳转登录地址
  17. Shell函数的7种用法介绍
  18. 洛谷P1433 吃奶酪【dfs】【剪枝】
  19. node.js获取url中的各个参数
  20. swift - 之 UICollectionView的用法/自定义流布局

热门文章

  1. JavaScript判断是否是数字
  2. 2019CCPC网络选拔赛 hdu6703 array(主席树+set)
  3. 22.Java基础_StringBuilder类
  4. gyp --depth . -D component=shared_library -Ibuild/standalone.gypi build/all.gyp
  5. SpringCloud琐碎内容
  6. GET POST 区分
  7. miniapp之登录、授权和支付
  8. thinkPHP5 添加新模块
  9. MySQL优化常见Extra分析——慢查询优化
  10. VMware+windbg时快照功能的使用