使用vue制作一個購物車功能,只是一個測試版本,注重的是功能實現,界面并沒有做好,數據也是模擬數據等
10年的蘿北網站建設經驗,針對設計、前端、開發、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。全網營銷推廣的優勢是能夠根據用戶設備顯示端的尺寸不同,自動調整蘿北建站的顯示方式,使網站能夠適用不同顯示終端,在瀏覽器中調整網站的寬度,無論在任何一種瀏覽器上瀏覽網站,都能展現優雅布局與設計,從而大程度地提升瀏覽體驗。創新互聯從事“蘿北網站設計”,“蘿北網站推廣”以來,每個客戶項目都認真落實執行。
不說那么多,直接上代碼
<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:"英雄聯盟",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>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創新互聯。
新聞名稱:vue實現購物車選擇功能
網頁URL:http://vcdvsql.cn/article26/pehijg.html
成都網站建設公司_創新互聯,為您提供App設計、電子商務、虛擬主機、企業網站制作、定制網站、全網營銷推廣
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯