Browse Source

H5:购物车商品点击去结算优化

panyong 3 years ago
parent
commit
a9d914db0f
1 changed files with 3 additions and 9 deletions
  1. 3 9
      htmldev/dashboard/src/views/sell/shopcart/shopcart.vue

+ 3 - 9
htmldev/dashboard/src/views/sell/shopcart/shopcart.vue

@@ -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')
     },
     // 单个商品增加