vue實現(xiàn)購物車選擇功能
更新時間:2020年01月10日 16:45:08 作者:ヤD草帽Dヤ
這篇文章主要為大家詳細介紹了vue實現(xiàn)購物車選擇功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
使用vue制作一個購物車功能,只是一個測試版本,注重的是功能實現(xiàn),界面并沒有做好,數(shù)據(jù)也是模擬數(shù)據(jù)等
不說那么多,直接上代碼
<template> <div id="app"> 全選<input type="checkbox" v-model="checkall" @change="check_all()"> <div v-for="(item,index) in mylist" :key="index"> <span>{{item.oname}}</span><input type="checkbox" v-model="item.this_all" @change="check_list(index)"> <p v-for="(goods,nindex) in item.newlist" :key="nindex"> <input type="checkbox" v-model="goods.check_one" @change="click_input(index,nindex)">{{goods.newname}}--{{goods.price}}元 </p> </div> <p>總價:{{allprice}}</p> <button @click="btn()">提交訂單</button> </div> </template> <script> export default { name: 'App', data(){ return{ mylist:[ {oname:"第一個",this_all:true,newlist:[{newname:"籃球",check_one:true,price:600},{newname:"足球",check_one:true,price:200},{newname:"滑雪",check_one:true,price:150}]}, {oname:"第二個",this_all:true,newlist:[{newname:"西瓜",check_one:true,price:35},{newname:"桃子",check_one:true,price:20}]}, {oname:"第三個",this_all:true,newlist:[{newname:"英雄聯(lián)盟",check_one:true,price:200}]}, ], checkall:true, allprice:0, cpmylist:[] } }, mounted:function(){ this.money(); }, methods: { money:function(){ var that = this; this.allprice=0; that.mylist.forEach(item1 =>{ item1.newlist.forEach(item2 =>{ if(item2.check_one==true){ that.allprice+=item2.price; } }) }) }, check_all:function(){ var that = this; that.mylist.forEach(item1 => { item1.this_all=that.checkall item1.newlist.forEach(item2 => { item2.check_one=that.checkall }) }); that.money(); }, abc:function(){ var that = this; var aaa = that.mylist.filter(item2 =>{ return item2.this_all==true }) aaa.length==that.mylist.length ? that.checkall = true : that.checkall = false that.money(); }, check_list:function(i){ var that = this; that.mylist[i].newlist.forEach(item1 =>{ item1.check_one=that.mylist[i].this_all }) that.abc(); }, click_input:function(i,j){ var that = this; var checklist = that.mylist[i].newlist.filter(item1 =>{ return item1.check_one==true }) checklist.length==that.mylist[i].newlist.length ? that.mylist[i].this_all = true : that.mylist[i].this_all = false that.abc(); }, btn:function(){ var that = this; that.cpmylist=JSON.parse(JSON.stringify(that.mylist)); that.cpmylist.filter(item1 =>{ item1.newlist = item1.newlist.filter(item2 =>{ return item2.check_one==true }) }) that.cpmylist=that.cpmylist.filter(item3 =>{ return item3.newlist.length!=0 }) if(that.cpmylist.length==0){ alert("請選擇商品哦!") }else{ console.log("★★★您購買的商品是:"); that.cpmylist.forEach(item4 =>{ console.log("----------"+item4.oname+"店鋪----------"); item4.newlist.forEach(item5 =>{ console.log("——>:"+item5.newname); }) }) } } }, } </script> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
在vue中使用express-mock搭建mock服務(wù)的方法
這篇文章主要介紹了在vue中使用express-mock搭建mock服務(wù)的方法,文中給大家提到了在vue-test-utils 中 mock 全局對象的相關(guān)知識 ,需要的朋友可以參考下2018-11-11vue點擊Dashboard不同內(nèi)容 跳轉(zhuǎn)到同一表格的實例
這篇文章主要介紹了vue點擊Dashboard不同內(nèi)容 跳轉(zhuǎn)到同一表格的實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-11-11Vue使用z-tree處理大數(shù)量的數(shù)據(jù)以及生成樹狀結(jié)構(gòu)
這篇文章主要介紹了Vue使用z-tree處理大數(shù)量的數(shù)據(jù)以及生成樹狀結(jié)構(gòu)方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-04-04Vuejs對象常用操作之取對應(yīng)的值、取key和value值、轉(zhuǎn)數(shù)組及合并等
最近在學(xué)Vue和javascript感覺js的好多方法都不太清楚,這里徹底總結(jié)下,這篇文章主要給大家介紹了關(guān)于Vuejs對象常用操作之取對應(yīng)的值、取key和value值、轉(zhuǎn)數(shù)組及合并等的相關(guān)資料,需要的朋友可以參考下2024-01-01vue動態(tài)綁定多個class以及帶上三元運算或其他條件
這篇文章主要介紹了vue動態(tài)綁定多個class以及帶上三元運算或其他條件,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-04-04