浏览代码

修复修改商品规格时导致价格清空的bug

aliyun0758874076 1 年之前
父节点
当前提交
9d83f5c440
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      src/views/commodity/commoditySystem/addComponent.vue

+ 13 - 0
src/views/commodity/commoditySystem/addComponent.vue

@@ -351,6 +351,17 @@ export default {
     },
     'form.skuList': {
       handler(newVal, oldVal) {
+        // console.log(newVal)
+        // console.log(oldVal)
+        // 修复因为添加规格导致的价格归零的问题
+        oldVal.forEach((item, index) => {
+          for (const key in newVal[index]) {
+            if (item[key]) {
+              newVal[index][key] = item[key]
+            }
+          }
+        })
+        // console.log(newVal)
       },
       deep: true
     }
@@ -414,6 +425,7 @@ export default {
         needImg: 0,
         sortOrder: 0
       })
+      // console.log(this.form.skuAttrList)
     },
     // 删除规格值
     delValue(index, index1) {
@@ -515,6 +527,7 @@ export default {
       if (values.length) {
         doExchange(values, 0)
       }
+      // console.log(this.form.skuList)
       // eslint-disable-next-line vue/no-mutating-props
       this.form.skuList = skuListArray.map((sku1) => {
         const { skuAttrList, skuAttrCodeDTOList } = sku1