|
@@ -143,7 +143,8 @@ export default {
|
|
|
numFetchStatus: 0, // 购物车列表加载状态
|
|
|
arrFetchStatus: ['正在努力加载~', '到底了'],
|
|
|
booFetchData: false, // 页面第一次获取数据是否成功
|
|
|
- isFetchLock: false // 接口调用加锁
|
|
|
+ isFetchLock: false, // 接口调用加锁
|
|
|
+ selectFoods: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -177,14 +178,6 @@ export default {
|
|
|
return false
|
|
|
}
|
|
|
return !this.fold
|
|
|
- },
|
|
|
- selectFoods: {
|
|
|
- get () {
|
|
|
- return this.$store.getters['shopcart/selectFoods']
|
|
|
- },
|
|
|
- set (val) {
|
|
|
- this.$store.commit('shopcart/UPDATE_SELECTFOODS', val)
|
|
|
- }
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
@@ -303,6 +296,7 @@ export default {
|
|
|
if (this.totalPrice < 1) {
|
|
|
return
|
|
|
}
|
|
|
+ this.$store.commit('shopcart/UPDATE_SELECTFOODS', this.selectFoods)
|
|
|
this.$emit('handleJumpPay')
|
|
|
},
|
|
|
// 单个商品增加
|