vue.js实战第5章 54页的练习1
直接放代码好了,全选的部分搞了好久,代码好像有点啰嗦,好在实现功能了(*^▽^*)
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>购物车示例</title> <link rel="stylesheet" href="index.css"> </head> <body> <div id="app" v-cloak> <template v-if="list.length"> <table> <thead> <tr> <th> <input type="checkbox" v-model="checkAll">全选 </th> <th>商品名称</th> <th>商品单价</th> <th>购买数量</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(item,index) in list"> <!-- <td>{{index+1}}</td> --> <td><input type="checkbox" :checked="item.check" @click="isAll(index)"> {{item.check}}</td> <td>{{item.name}}</td> <td>{{item.price}}</td> <td> <button @click="handleReduce(index)" :display="item.count===1">-</button> {{item.count}} <button @click="handleAdd(index)">+</button> </td> <td> <button @click="handleRemove(index)">移除</button> </td> </tr> </tbody> </table> <div>总价:¥{{totalPrice}}</div> </template> <div v-else> 购物车为空 </div> </div> <script src="../vue.js"></script> <script src="index.js"></script> </body> </html>
JS:
var app=new Vue({ el:‘#app‘, data:{ list:[ { id:1, name:‘iPhone 7‘, price:6288, count:1, check:false },{ id:2, name:‘iPad Pro‘, price:5888, count:1, check:false },{ id:3, name:‘MacBook Pro‘, price:21488, count:1, check:false } ], checkAll:false, smallHand:false }, computed:{ totalPrice:function(){ this.newList=this.list.filter(function(item){ if(item.check){ return item; } }); var total=0; for(var i=0;i<this.newList.length;i++){ var item=this.newList[i]; total+=item.price*item.count; } return total.toString().replace(/\B(?=(\d{3})+$)/g,‘,‘);//匹配后面已3个数字结尾的非单词边界,换成“,” /* replace: 用于在字符串中用一些字符替换另一些字符,或替换一个与正则表达式匹配的子串 \B :匹配非单词边界 (red|blue|green):查找任何指定的选项 ?=n :匹配任何其后紧接指定字符串n的字符串(n量词) 提供后面的n找? \d :查找数字 n{X}:匹配包含X个n的序列字符串 \d{3}:匹配含有3个数字的字符串 n$ :匹配任何结尾为n的字符串 n+ :匹配任何包含至少一个n的字符串 (\d{3})+$ :匹配至少一个已含有3个数字字符串结尾的字符 */ } }, methods:{ handleReduce:function(index){ if(this.list[index].count===1) return; this.list[index].count--; }, handleAdd:function(index){ this.list[index].count++; }, handleRemove:function(index){ this.list.splice(index,1); }, isAll:function(index){ console.log(this.list[index].check); var indexItem=this.list[index]; indexItem.check=!indexItem.check; var num=0; for(var i=0;i<this.list.length;i++){ var item=this.list[i]; if(item.check){ num++; }else{ num--; } } console.log(num);////(选中了最后一个)3-全部勾选-勾选全选 (之前全部勾选,取消了任意一个勾选) 1-取消全选的勾选 if(num==3||(num==1&&indexItem.check==false)){ this.checkAll=indexItem.check; this.smallHand=true; } } }, watch:{ checkAll:function(){ if(this.smallHand){ }else{ for(var i=0;i<this.list.length;i++){ this.list[i][‘check‘]=this.checkAll; } } this.smallHand=false; } } })
css:
[v-cloak] { display: none; } table { border: 1px solid #e9e9e9; border-collapse: collapse; border-spacing: 0; empty-cells: show; } table th, table td { padding: 8px 16px; border: 1px solid #e9e9e9; text-align: left; } table th { background: #f7f7f7; color: #5c6b77; font-weight: 600; white-space: nowrap; }
原文地址:https://www.cnblogs.com/em2464/p/10413181.html
时间: 2024-10-09 08:12:30