如圖這種情況 同樣物品多次選擇 如何增加count數(shù)量 而并不是多次增加名字呢
<template>
<div>
<div class="order">
<div class="order-head">
</div>
<div class = 'border'></div>
<div class="order-list">
<ul v-for = 'food in carList'>
<li>{{food.name}}</li><span>{{carList.count}}</span>
</ul>
</div>
</div>
<div class = "foods-wrapper">
<div class="fooList" v-for="(item,index) in goods" >
<div v-for="food in item.foods" v-show="name==item.name" class = 'food' @click ="addCart(food)" >
<span>{{food.name}}</span>
<span>¥{{food.price}}</span>
</div>
</div>
</div>
<div class="navMenu">
<ul>
<li v-for="(item,index) in goods" :class="isSelected == index?'navMenu-selected':'nav'" @click = 'menuClick(item.name,index)'>
<span class="text">
{{item.name}}
</span>
</li>
</ul>
</div>
</div>
</template>
<script>
import axios from 'axios'
import Vue from 'vue'
export default {
props: {
food: Object
},
name: 'navMenu',
created() {
axios.get('static/data.json').then((res) => {
console.log(res.data.goods)
this.goods = res.data.goods
});
},
data() {
return {
goods: [],
isSelected:0,
carList:[],
name:'food',
}
},
computed:{
},
methods:{
addCart(newFood) {
//判斷是否購物車中已經(jīng)有商品,如果有就增加數(shù)量,反之加入這個商品
let foodIndex = this.cartList.findIndex(food => food.name == newFood);
//foodIndex為-1表示不存在 ,要加入商品
if (foodIndex === -1) {
cartList.push({
name: newFood,
count: 1
})
//foodIndex存在 ,更新數(shù)據(jù)
} else {
cartList[foodIndex].count++
}
},
menuClick (name,index) {
this.isSelected = index
this.name=name
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.navMenu{
position: fixed;
right: 1%;
top:0;
height: 100%;
color:white;
}
.navMenu ul{
list-style: none;
background: #00B595;
padding: 5%;
}
.navMenu ul li{
margin:20% 0% 10%;
padding: 5%;
}
.nav{
list-style: none;
background: #00B595;
padding: 5%;
margin:20% 0% 10%;
padding: 5%;
}
.navMenu-selected{
background: #00725E;
}
.foods-wrapper{
background: #DBE0E3;
position: absolute;
top:3%;
left:30%;
width:60%;
height:80%;
}
.foodList{
margin: 1%;
}
.food{
background-color: #FFFFFF;
border-radius: 8%;
display: inline-block;
height:90px;
width:125px;
margin: 1%;
vertical-align: top;
}
.order{
background: white;
width: 25%;
margin-top:1%;
}
.order-head{
background-color: #00B595;
width: 100%;
height: 50px;
margin-top:5%;
}
.border{
border:1px solid #DBE0E3;
margin-top: 2%;
}
.order-list{
margin-top:1%;
width:100%;
height: 400px;
background-color: yellow;
}
</style>
addCart的邏輯有問題。。判斷是否有商品,有就更新數(shù)量,沒有就添加商品。代碼大概如下:
// cartList的結(jié)構(gòu)是這樣:
// [{
// name:"橙汁",
// count:1
// },{
// name:"雪碧",
// count:1
// }]
addCart(newFood) {
//判斷是否購物車中已經(jīng)有商品,如果有就增加數(shù)量,反之加入這個商品
let foodIndex = this.cartList.findIndex(food => food.name == newFood);
//foodIndex為-1表示不存在 ,要加入商品
if (foodIndex === -1) {
cartList.push({
name: newFood,
count: 1
})
//foodIndex存在 ,更新數(shù)據(jù)
} else {
cartList[foodIndex].count++
}
}
同樣你刪除商品時,如果刪除后數(shù)量為0,就從購物車中移除。
ps: 命令規(guī)范點(diǎn)啊,carList我改成cartList了
在addCart函數(shù)加一個商品id參數(shù),如:@click ="addCart(food.id),點(diǎn)擊的時候把商品的id傳入,拿到商品id后,去遍歷購物車數(shù)據(jù),如果id相等,則改變購物車數(shù)量,如不相等,則往購物車添加商品。
題外話:建議你直接把添加、刪除一并寫在一個函數(shù)中,為函數(shù)增加一個type參數(shù),如添加:@click ="operation(food.id,1)、如減少:@click ="operation(food.id,-1),,對購物車修改數(shù)據(jù)直接:購物車數(shù)量 + type,這樣可以在一個函數(shù)中處理所有的事件,更加簡單。
北大青鳥APTECH成立于1999年。依托北京大學(xué)優(yōu)質(zhì)雄厚的教育資源和背景,秉承“教育改變生活”的發(fā)展理念,致力于培養(yǎng)中國IT技能型緊缺人才,是大數(shù)據(jù)專業(yè)的國家
達(dá)內(nèi)教育集團(tuán)成立于2002年,是一家由留學(xué)海歸創(chuàng)辦的高端職業(yè)教育培訓(xùn)機(jī)構(gòu),是中國一站式人才培養(yǎng)平臺、一站式人才輸送平臺。2014年4月3日在美國成功上市,融資1
北大課工場是北京大學(xué)校辦產(chǎn)業(yè)為響應(yīng)國家深化產(chǎn)教融合/校企合作的政策,積極推進(jìn)“中國制造2025”,實(shí)現(xiàn)中華民族偉大復(fù)興的升級產(chǎn)業(yè)鏈。利用北京大學(xué)優(yōu)質(zhì)教育資源及背
博為峰,中國職業(yè)人才培訓(xùn)領(lǐng)域的先行者
曾工作于聯(lián)想擔(dān)任系統(tǒng)開發(fā)工程師,曾在博彥科技股份有限公司擔(dān)任項(xiàng)目經(jīng)理從事移動互聯(lián)網(wǎng)管理及研發(fā)工作,曾創(chuàng)辦藍(lán)懿科技有限責(zé)任公司從事總經(jīng)理職務(wù)負(fù)責(zé)iOS教學(xué)及管理工作。
浪潮集團(tuán)項(xiàng)目經(jīng)理。精通Java與.NET 技術(shù), 熟練的跨平臺面向?qū)ο箝_發(fā)經(jīng)驗(yàn),技術(shù)功底深厚。 授課風(fēng)格 授課風(fēng)格清新自然、條理清晰、主次分明、重點(diǎn)難點(diǎn)突出、引人入勝。
精通HTML5和CSS3;Javascript及主流js庫,具有快速界面開發(fā)的能力,對瀏覽器兼容性、前端性能優(yōu)化等有深入理解。精通網(wǎng)頁制作和網(wǎng)頁游戲開發(fā)。
具有10 年的Java 企業(yè)應(yīng)用開發(fā)經(jīng)驗(yàn)。曾經(jīng)歷任德國Software AG 技術(shù)顧問,美國Dachieve 系統(tǒng)架構(gòu)師,美國AngelEngineers Inc. 系統(tǒng)架構(gòu)師。