vuejs手把手教你写一个完整的购物车实例代码
程序员文章站
2023-02-25 13:14:22
由于我们公司是主营业务是海淘,所以每个项目都是类似淘宝天猫之类的商城,那么购物车就是一个重点开发功能模块。介于之前我都是用jq来写购物车的,这次就用vuejs来写一个购物车...
由于我们公司是主营业务是海淘,所以每个项目都是类似淘宝天猫之类的商城,那么购物车就是一个重点开发功能模块。介于之前我都是用jq来写购物车的,这次就用vuejs来写一个购物车。下面我就从全选,数量控制器,运费,商品金额计算等方法来演示一下一个能用在实际场景的购物车是怎么做出来的以及记录一下这次用vuejs踩过的坑。
1.一层数据结构-全选
下面这段代码和vuejs官网里面checkbox绑定很像。不明白的可以直接上vuejs官网看看。
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>vuejs-全选</title> <style type="text/css"> * { padding: 0; margin: 0; } a { color: #333; text-decoration:none; } </style> </head> <body> <label> <input type="checkbox" name="all" v-on:click="chooseall" v-model="selectarr.length==goodslist.length" /> <span>全选</span> </label> <div v-for="(index, item) in goodslist"> <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <input type="checkbox" :value="index" v-model="selectarr" /> 商品名称:<span v-html="item.name"></span> | 价格:<span v-html="item.price"></span> </a> </div> <label> <input type="checkbox" name="all" v-on:click="chooseall" v-model="selectarr.length==goodslist.length" /> <span>全选</span> </label> <script src="http://cdn.bootcss.com/vue/1.0.7/vue.js"></script> <script> var vue = new vue({ el : 'body', data : { goodslist : [ { name : '山本汉方1', price : '19.00' }, { name : '山本汉方2', price : '19.00' }, { name : '山本汉方3', price : '19.00' }, { name : '山本汉方4', price : '19.00' }, { name : '山本汉方5', price : '19.00' }, ], selectarr : [] }, ready : function() {}, methods : { chooseall : function(event) { var othis = this; othis.selectarr = []; if ( event.currenttarget.checked ) { othis.goodslist.foreach(function(item , index) { othis.selectarr.push(index); }); } console.log(othis.selectarr); } } }) </script> </body> </html>
2.二层数据结构-全选
一层数据结构的购物车在现实中是很少看到的,比如我们最熟悉的淘宝购物车是按照店铺分的,那么必然是多层的数据结构。这次在写这个二层数据接口的全选,碰到一个很大的坑,一开始我是用了一层数据结构的数据,发现当对象数组里面的某个值改变了,视图竟然没有触发!,所以会造成下面所有的checkbox都被选中了,最上面的那个全选checkbox竟然还是没有被选中。感觉告诉我这是vuejs的坑,后来发现是js的坑。具体可以看这个。方法是百度到了,可是放我这里没有用(应该是版本问题)。于是我就改了数据结构。
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>vuejs-全选</title> <style type="text/css"> * { padding: 0; margin: 0; } a { color: #333; text-decoration:none; } .goods-item { display: block; } .store-item { margin-bottom: 20px; } </style> </head> <body> <div v-for="(index1, item) in goodsobj" class="store-item"> <p> <span v-html="item.name"></span> <label> <input type="checkbox" name="all" v-on:click="chooseshopgoods(index1)" v-model="item.checked" /> <span>全选</span> </label> </p> <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" v-for="(index, data) in item.list" class="goods-item"> <input type="checkbox" v-model="data.checked" v-on:click="choose(index1, index)" /> 商品名称:<span v-html="data.name"></span> | 价格:<span v-html="data.price"></span> </a> </div> <label> <input type="checkbox" name="all" v-on:click="chooseallgoods()" v-model="allchecked" /> <span>全选</span> </label> <script src="http://cdn.bootcss.com/vue/1.0.7/vue.js"></script> <script> var goodsobj = [ { name : '大胖的店', checked : false, list : [ { name : '麻辣二胖', price : 23.00, realstock : 10, fare : 1.5, num : 1, checked : false, }, { name : '香辣二胖', price : 21.00, realstock : 2, fare : 1.5, num : 2, checked : false, }, { name : '红烧二胖', price : 88.00, realstock : 8, fare : 1.5, num : 4, checked : false, } ] }, { name : '二胖的店', checked : false, list : [ { name : '漂亮的裙子', price : 166.00, realstock : 10, fare : 2, num : 1, checked : false, }, { name : '漂亮的短袖', price : 188.00, realstock : 2, fare : 1.5, num : 2, checked : false, }, { name : '漂亮的鞋子', price : 299.00, realstock : 1, fare : 3, num : 1, checked : false, } ] }, { name : '胖胖的店', checked : false, list : [ { name : '福满多', price : 3.00, realstock : 10, fare : .5, num : 10, checked : false, }, { name : '精品卫龙', price : 1.50, realstock : 2, fare : 2, num : 2, checked : false, }, { name : '周长江', price : 2.50, realstock : 3, fare : 5, num : 2, checked : false, } ] }, ]; var vue = new vue({ el : 'body', data : { goodsobj : goodsobj, allchecked : false }, ready : function() { }, methods : { // 全部商品全选 chooseallgoods : function() { var flag = true; if ( this.allchecked ) { flag = false; } for ( var i = 0, len = this.goodsobj.length; i < len; i++ ) { this.goodsobj[i]['checked'] = flag; var list = this.goodsobj[i]['list']; for ( var k = 0, len1 = list.length; k < len1; k++ ) { list[k]['checked'] = flag; } } this.allchecked = !this.allchecked; }, // 每个店铺全选 chooseshopgoods : function( index) { var list = this.goodsobj[index]['list'], len = list.length; if ( this.goodsobj[index]['checked'] ) { for (var i = 0; i < len; i++ ) { list[i]['checked'] = false; } } else { for (var i = 0; i < len; i++ ) { list[i]['checked'] = true; } } this.goodsobj[index]['checked'] = !this.goodsobj[index]['checked']; // 判断是否选择所有商品的全选 this.ischooseall(); }, // 单个选择 choose : function( index1, index) { var list = this.goodsobj[index1]['list'], len = list.length; if ( list[index]['checked'] ) { this.goodsobj[index1]['checked'] = false; this.allchecked = false; list[index]['checked'] = !list[index]['checked']; } else { list[index]['checked'] = !list[index]['checked']; // 判断是否选择当前店铺的全选 var flag = true; for (var i = 0; i < len; i++ ) { if ( list[i]['checked'] == false ) { flag = false; break; } } flag == true ? this.goodsobj[index1]['checked'] = true : this.goodsobj[index1]['checked'] = false; } // 判断是否选择所有商品的全选 this.ischooseall(); }, // 判断是否选择所有商品的全选 ischooseall : function() { var flag1 = true; for ( var i = 0, len = this.goodsobj.length; i < len; i++ ) { if ( this.goodsobj[i]['checked'] == false ) { flag1 = false; break; } } flag1 == true ? this.allchecked = true : this.allchecked = false; }, } }) </script> </body> </html>
3.一层数据结构-数量选择器
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>vuejs-数量选择器(1层数据结构)</title> <style type="text/css"> *{ padding:0; margin: 0; box-sizing: border-box; font-size: 16px; } .clearfix:after { content: "."; visibility: hidden; display: block; height: .1px; font-size: .1em; line-height: 0; clear: both; } .quantity-selector { margin-bottom: 20px; width: 8.571rem; line-height: 2.857rem; border: 1px solid #d1d6e4; border-radius: 3px; } .quantity-selector .reduce, .quantity-selector .add { float: left; width: 33.33%; border-right: 1px solid #d1d6e4; text-align: center; cursor: pointer; } .quantity-selector .number { float: left; width: 33.33%; height: 2.857rem; padding: .5rem 0; line-height: 1rem; border: none; text-align: center; } .quantity-selector .add { border-left: 1px solid #d1d6e4; border-right: none; } .quantity-selector .disable { color: #d2d2d2; cursor: default; } </style> </head> <body> <div v-for="data in goodslist"> <p>商品数量 :<span v-html="data.num"></span></p> <p>商品库存 :<span v-html="data.realstock"></span></p> <div class="quantity-selector clearfix"> <span class="reduce" v-on:click="numchange($index, -1)" v-bind:class="{ 'disable' : data.num==1 }">-</span> <input type="number" v-bind:value="data.num" class="number" v-bind:data-realstock="data.realstock" v-on:keyup="numentry($index)" v-on:keydown="numentry($index)" v-model="data.num"/> <span class="add" v-on:click="numchange($index, 1)" v-bind:class="{ 'disable' : data.num==data.realstock }">+</span> </div> </div> <script src="http://cdn.bootcss.com/vue/1.0.7/vue.js"></script> <script> var vue = new vue({ el : 'body', data : { goodslist : [ { name : '山本汉方1', price : '19.00', realstock : 10, num : 1 }, { name : '山本汉方1', price : '19.00', realstock : 7, num : 8 }, { name : '山本汉方1', price : '19.00', realstock : 2, num : 2 }, ] }, ready : function() {}, methods : { numchange : function(index, numchange) { var goods = this.goodslist[index]; if ( numchange == 1 ) { goods.num++; } else if ( numchange == -1 ) { goods.num--; } if ( goods.num <= 1 ) { goods.num = 1; } if ( goods.num >= goods.realstock ) { goods.num = goods.realstock; } }, numentry : function(index) { var goods = this.goodslist[index]; if ( goods.num <=1 ) { goods.num = 1; } if ( goods.num > goods.realstock ) { goods.num = goods.realstock; } } } }) </script> </body> </html>
4.二层数据结构-数据选择器
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>vuejs-数量选择器(2层数据结构)</title> <style type="text/css"> *{ padding:0; margin: 0; box-sizing: border-box; font-size: 16px; } a { text-decoration: none; color: #333; } .clearfix:after { content: "."; visibility: hidden; display: block; height: .1px; font-size: .1em; line-height: 0; clear: both; } .quantity-selector { margin: 0 auto; width: 8.571rem; line-height: 30px; border: 1px solid #d1d6e4; border-radius: 3px; } .quantity-selector .reduce, .quantity-selector .add { float: left; width: 33.33%; border-right: 1px solid #d1d6e4; text-align: center; cursor: pointer; } .quantity-selector .number { float: left; width: 33.33%; height: 30px; border: none; padding-left: 10px; text-align: center; } .quantity-selector .add { border-left: 1px solid #d1d6e4; border-right: none; } .quantity-selector .disable { color: #d2d2d2; cursor: default; } /*店铺开始*/ .store-item { width: 600px; margin: 30px auto; } .store-item th { height: 40px; background: #d2d2d2; -webkit-text-stroke: 1px #ff7500; font-size: 18px; } .store-item td { height: 60px; text-align: center; } .cal-store-box { text-align: right; } .store-footer { width: 600px; margin: 50px auto; display: flex; justify-content: space-between; align-items: center; } /*店铺结束*/ </style> </head> <body> <div class="store-item" v-for="(index1, item) in goodsobj"> <p v-html="index1"></p> <table class="store-item"> <col width="10%"></col> <col width="10%"></col> <col width="20%"></col> <col width="10%"></col> <col width="40%"></col> <col width="10%"></col> <thead class="thead"> <tr> <th>选择</th> <th>商品</th> <th>单价</th> <th>运费</th> <th>数量</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(index, data) in item"> <td> </td> <td> <p><span v-html="data.name"></span></p> </td> <td v-html="(data.price).tofixed(2)"></td> <td v-html="(data.fare).tofixed(2)"></td> <td> <div class="quantity-selector clearfix"> <span class="reduce" v-on:click="numchange(index1, $index, -1)" v-bind:class="{ 'disable' : data.num==1 }">-</span> <input type="number" v-bind:value="data.num" class="number" v-bind:data-realstock="data.realstock" v-on:keyup="numentry(index1, $index)" v-on:keydown="numentry(index1, $index)" v-model="data.num"/> <span class="add" v-on:click="numchange(index1, $index, 1)" v-bind:class="{ 'disable' : data.num==data.realstock }">+</span> </div> </td> <td> <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >删除</a> </td> </tr> </tbody> </table> <div class="cal-store-box"> <p>店铺总运费: <span v-html="caleveryfare(index1)"></span></p> <p>店铺商品总金额: <span v-html="caleverystore(index1)"></span></p> </div> </div> <div class="store-footer"> <!-- <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > <input type="checkbox" /> <span>全选</span> </a> --> <div class="cal-box"> <p>商品总金额:<span v-html="totalfare"></span></p> <p>运费总金额:<span v-html="totalmoney"></span></p> </div> </div> <script src="http://cdn.bootcss.com/vue/1.0.7/vue.js"></script> <script> var goodsobj = { '大胖的店' : [ { name : '康师傅', price : 23.00, realstock : 10, fare : 1.5, num : 1 }, { name : '今麦郎', price : 26.00, realstock : 2, fare : 1.5, num : 2 }, { name : '比巴卜', price : 88.00, realstock : 8, fare : 1.5, num : 4 } ], '二胖的店' : [ { name : '好看的鞋子', price : 23.00, realstock : 7, fare : 2, num : 1 }, { name : '好看的裙子', price : 26.00, realstock : 5, fare : 2, num : 5 }, { name : '好看的短袖', price : 88.00, realstock : 10, fare : 2, num : 1 } ], '胖胖的店' : [ { name : '福满多1号', price : 26.00, realstock : 7, fare : 3, num : 1 }, { name : '福满多2号', price : 26.00, realstock : 7, fare : 3, num : 1 }, { name : '经典卫龙辣条', price : 16.00, realstock : 50, fare : 3, num : 5 }, { name : '霸王牛津', price : 80.00, realstock : 10, fare : 3, num : 6 } ] }; var vue = new vue({ el : 'body', data : { goodsobj : goodsobj, totalmoney : 0, totalfare : 0 }, ready : function() { this.caltotalmoney(); this.caltotalfare(); }, methods : { numchange : function(index1, index, numchange) { var goods = this.goodsobj[index1][index], othis = this; if ( numchange == 1 ) { goods.num++; } else if ( numchange == -1 ) { goods.num--; } if ( goods.num <= 1 ) { goods.num = 1; } if ( goods.num >= goods.realstock ) { goods.num = goods.realstock; } this.caltotalmoney(); }, numentry : function(index1, index) { var goods = this.goodsobj[index1][index]; if ( goods.num <=1 ) { goods.num = 1; } if ( goods.num > goods.realstock ) { goods.num = goods.realstock; } this.caltotalmoney(); }, caleverystore : function(index) { var everystoremoney = 0; this.goodsobj[index].foreach(function(item, index, arr) { everystoremoney += parsefloat(item.price) * parsefloat(item.num); }); return everystoremoney.tofixed(2); }, caleveryfare : function(index) { var everystorefare = 0; this.goodsobj[index].foreach(function(item, index, arr) { everystorefare += parsefloat(item.fare) * parsefloat(item.num); }); return everystorefare.tofixed(2); }, caltotalmoney : function () { var othis = this; this.totalmoney = 0; for ( var x in this.goodsobj ) { this.goodsobj[x].foreach(function(item, index, arr) { othis.totalmoney += parsefloat(item.price) * parsefloat(item.num); }); } this.totalmoney = this.totalmoney.tofixed(2); }, caltotalfare : function () { var othis = this; this.totalfare = 0; for ( var x in this.goodsobj ) { this.goodsobj[x].foreach(function(item, index, arr) { othis.totalfare += parsefloat(item.fare) * parsefloat(item.num); }); } this.totalfare = this.totalfare.tofixed(2); }, } }) </script> </body> </html>
5.一个完整的购物车
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>vuejs-数量选择器(2层数据结构)</title> <style type="text/css"> *{ padding:0; margin: 0; box-sizing: border-box; font-size: 16px; } a { text-decoration: none; color: #333; } .clearfix:after { content: "."; visibility: hidden; display: block; height: .1px; font-size: .1em; line-height: 0; clear: both; } .quantity-selector { margin: 0 auto; width: 8.571rem; line-height: 30px; border: 1px solid #d1d6e4; border-radius: 3px; } .quantity-selector .reduce, .quantity-selector .add { float: left; width: 33.33%; border-right: 1px solid #d1d6e4; text-align: center; cursor: pointer; } .quantity-selector .number { float: left; width: 33.33%; height: 30px; border: none; padding-left: 10px; text-align: center; } .quantity-selector .add { border-left: 1px solid #d1d6e4; border-right: none; } .quantity-selector .disable { color: #d2d2d2; cursor: default; } label { cursor: pointer; } .choose-all { margin-left: 20px; } /*店铺开始*/ .store-item { width: 600px; margin: 30px auto; } .store-item th { height: 40px; background: #d2d2d2; -webkit-text-stroke: 1px #ff7500; font-size: 18px; } .store-item td { height: 60px; text-align: center; } .cal-store-box { text-align: right; } .store-footer { width: 600px; margin: 50px auto; display: flex; justify-content: space-between; align-items: center; } /*店铺结束*/ </style> </head> <body> <div class="store-item" v-for="(index1, item) in goodsobj"> <p> <span v-html="item.name"></span> <label class="choose-all"> <input type="checkbox" name="all" v-on:click="chooseshopgoods(index1)" v-model="item.checked" /> <span>全选</span> </label> </p> <table class="store-item"> <col width="10%"></col> <col width="15%"></col> <col width="15%"></col> <col width="10%"></col> <col width="40%"></col> <col width="10%"></col> <thead class="thead"> <tr> <th>选择</th> <th>商品</th> <th>单价</th> <th>运费</th> <th>数量</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(index, data) in item.list"> <td> <input type="checkbox" name="all" v-model="data.checked" v-on:click="choose(index1, index)" /> </td> <td> <p><span v-html="data.name"></span></p> </td> <td v-html="(data.price).tofixed(2)"></td> <td v-html="(data.fare).tofixed(2)"></td> <td> <div class="quantity-selector clearfix"> <span class="reduce" v-on:click="numchange(index1, $index, -1)" v-bind:class="{ 'disable' : data.num==1 }">-</span> <input type="number" v-bind:value="data.num" class="number" v-bind:data-realstock="data.realstock" v-on:keyup="numentry(index1, $index)" v-on:keydown="numentry(index1, $index)" v-model="data.num"/> <span class="add" v-on:click="numchange(index1, $index, 1)" v-bind:class="{ 'disable' : data.num==data.realstock }">+</span> </div> </td> <td> <a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" v-on:click="delgoods(index1, index)">删除</a> </td> </tr> </tbody> </table> <div class="cal-store-box"> <p>店铺总运费: <span v-html="caleveryfare(index1)"></span></p> <p>店铺商品总金额: <span v-html="caleverystore(index1)"></span></p> </div> </div> <div class="store-footer"> <label> <input type="checkbox" v-on:click="chooseallgoods($event)" v-model="allchecked" /> <span>全选</span> </label> <div class="cal-box"> <p>商品总运费:<span v-html="totalfare.tofixed(2)"></span></p> <p>商品总金额:<span v-html="totalmoney.tofixed(2)"></span></p> </div> </div> <script src="http://cdn.bootcss.com/vue/1.0.7/vue.js"></script> <script> var goodsobj = [ { name : '大胖的店', checked : false, list : [ { name : '麻辣二胖', price : 23.00, realstock : 10, fare : 1.5, num : 1, checked : false, }, { name : '香辣二胖', price : 21.00, realstock : 2, fare : 1.5, num : 2, checked : false, }, { name : '红烧二胖', price : 88.00, realstock : 8, fare : 1.5, num : 4, checked : false, } ] }, { name : '二胖的店', checked : false, list : [ { name : '漂亮的裙子', price : 166.00, realstock : 10, fare : 2, num : 1, checked : false, }, { name : '漂亮的短袖', price : 188.00, realstock : 2, fare : 1.5, num : 2, checked : false, }, { name : '漂亮的鞋子', price : 299.00, realstock : 1, fare : 3, num : 1, checked : false, } ] }, { name : '胖胖的店', checked : false, list : [ { name : '福满多', price : 3.00, realstock : 10, fare : .5, num : 10, checked : false, }, { name : '精品卫龙', price : 1.50, realstock : 2, fare : 2, num : 2, checked : false, }, { name : '周长江', price : 2.50, realstock : 3, fare : 5, num : 2, checked : false, } ] }, ]; var vue = new vue({ el : 'body', data : { goodsobj : goodsobj, totalmoney : 0, totalfare : 0, allchecked : false }, ready : function() {}, methods : { // 全部商品全选 chooseallgoods : function() { var flag = true; if ( this.allchecked ) { flag = false; } for ( var i = 0, len = this.goodsobj.length; i < len; i++ ) { this.goodsobj[i]['checked'] = flag; var list = this.goodsobj[i]['list']; for ( var k = 0, len1 = list.length; k < len1; k++ ) { list[k]['checked'] = flag; } } this.allchecked = !this.allchecked; this.caltotalmoney(); this.caltotalfare(); }, // 每个店铺全选 chooseshopgoods : function( index) { var list = this.goodsobj[index]['list'], len = list.length; if ( this.goodsobj[index]['checked'] ) { for (var i = 0; i < len; i++ ) { list[i]['checked'] = false; } } else { for (var i = 0; i < len; i++ ) { list[i]['checked'] = true; } } this.goodsobj[index]['checked'] = !this.goodsobj[index]['checked']; // 判断是否选择所有商品的全选 this.ischooseall(); this.cal(index); }, // 单个选择 choose : function( index1, index) { var list = this.goodsobj[index1]['list'], len = list.length; if ( list[index]['checked'] ) { this.goodsobj[index1]['checked'] = false; this.allchecked = false; list[index]['checked'] = !list[index]['checked']; } else { list[index]['checked'] = !list[index]['checked']; // 判断是否选择当前店铺的全选 var flag = true; for (var i = 0; i < len; i++ ) { if ( list[i]['checked'] == false ) { flag = false; break; } } flag == true ? this.goodsobj[index1]['checked'] = true : this.goodsobj[index1]['checked'] = false; } // 判断是否选择所有商品的全选 this.ischooseall(); this.cal(index); }, // 判断是否选择所有商品的全选 ischooseall : function() { var flag1 = true; for ( var i = 0, len = this.goodsobj.length; i < len; i++ ) { if ( this.goodsobj[i]['checked'] == false ) { flag1 = false; break; } } flag1 == true ? this.allchecked = true : this.allchecked = false; }, // 商品数量控制 numchange : function(index1, index, numchange) { var goods = this.goodsobj[index1]['list'][index], othis = this; if ( numchange == 1 ) { goods.num++; } else if ( numchange == -1 ) { goods.num--; } if ( goods.num <= 1 ) { goods.num = 1; } if ( goods.num >= goods.realstock ) { goods.num = goods.realstock; } this.cal(index); }, // 用户填写容错处理 numentry : function(index1, index) { var goods = this.goodsobj[index1]['list'][index]; if ( goods.num <=1 ) { goods.num = 1; } if ( goods.num > goods.realstock ) { goods.num = goods.realstock; } this.cal(index); }, // 计算每个店铺的商品总额 caleverystore : function(index) { var everystoremoney = 0, list = this.goodsobj[index]['list']; list.foreach(function(item, index, arr) { if ( list[index]['checked'] ) { everystoremoney += parsefloat(item.price) * parsefloat(item.num); } }); return everystoremoney.tofixed(2); }, // 计算每个店铺的运费总额 caleveryfare : function(index) { var everystorefare = 0, list = this.goodsobj[index]['list']; list.foreach(function(item, index, arr) { if ( list[index]['checked'] ) { everystorefare += parsefloat(item.fare) * parsefloat(item.num); } }); return everystorefare.tofixed(2); }, // 计算商品总金额 caltotalmoney : function () { var othis = this; this.totalmoney = 0; for ( var i = 0, len = this.goodsobj.length; i < len; i++ ) { var list = this.goodsobj[i]['list']; list.foreach(function(item, index, arr) { if ( list[index]['checked'] ) { othis.totalmoney += parsefloat(item.price) * parsefloat(item.num); } }); } }, // 计算商品总运费 caltotalfare : function () { var othis = this; this.totalfare = 0; for ( var i = 0, len = this.goodsobj.length; i < len; i++ ) { var list = this.goodsobj[i]['list']; list.foreach(function(item, index, arr) { if ( list[index]['checked'] ) { othis.totalfare += parsefloat(item.fare) * parsefloat(item.num); } }); } }, // 计算方法集合 cal : function(index) { this.caleverystore(index); this.caleveryfare(index); this.caltotalmoney(); this.caltotalfare(); }, // 删除操作 delgoods : function(index1, index) { console.log(index1); console.log(index); this.goodsobj[index1]['list'].splice(index, 1); this.cal(index); } } }) </script> </body> </html>
效果如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。