瀏覽代碼

H5-购物车:商品附加选择优化

panyong 3 年之前
父節點
當前提交
3ab09be42f
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      htmldev/dashboard/src/views/sell/food/food.vue

+ 4 - 3
htmldev/dashboard/src/views/sell/food/food.vue

@@ -202,11 +202,12 @@ export default {
         const idx = curAttach.findIndex(item => item === attachName)
 
         if (idx > -1) {
-          curAttach.splice(index, 1)
+          curAttach.splice(idx, 1)
         } else {
-          if (curAttach.length < max) {
-            curAttach.push(attachName)
+          if (curAttach.length >= max) {
+            curAttach.pop()
           }
+          curAttach.push(attachName)
         }
         allAttach.splice(index, 1, curAttach)
         Vue.set(this.objProductAttachs, SKUId, allAttach)