Browse Source

解决了商品管理删除规格错乱问题

wzy 1 year ago
parent
commit
39403e712c

+ 3 - 3
src/views/commodity/commoditySystem/addCommodity.vue

@@ -528,7 +528,7 @@ export default {
     },
     // 保存
     async save() {
-      console.log(this.params.skuAttrList)
+      // console.log(this.params.skuAttrList)
       if (this.params.attrStyle === 1) {
         for (let i = 0; i < this.params.skuAttrList.length; i++) {
           if (this.params.skuAttrList[i].skuName === '') {
@@ -551,7 +551,7 @@ export default {
       if (this.productId) {
         this.form.productId = this.productId
         const sku = JSON.parse(sessionStorage.getItem('form'))
-        console.log(sku)
+        // console.log(sku)
         sku.forEach((element, i) => {
           for (let index = 0; index < this.form.skus.length; index++) {
             if (i === index) {
@@ -561,7 +561,7 @@ export default {
         })
         console.log(this.form, 'this.form')
         const res = await getClassifyUpdate(this.form)
-        console.log(res)
+        // console.log(res)
         if (res.code === '') {
           this.$message({
             type: 'success',

+ 15 - 6
src/views/commodity/commoditySystem/addComponent.vue

@@ -305,7 +305,9 @@ export default {
       dataObj: {
         folderId: 1
       },
-      fileList: []
+      fileList: [],
+      //  记录当前是哪里增加或者删除的
+      idx:null
     }
   },
   computed: {
@@ -345,6 +347,7 @@ export default {
             const hasChild = skuAttr.values.some((attr) => attr.skuValue)
             return skuAttr.skuName && hasChild
           })
+          // console.log(hasChilds);
         if (this.form.attrStyle === 1 && hasChilds.length) {
           this.skuFormat()
         }
@@ -407,8 +410,11 @@ export default {
         skuValue: '',
         image: ''
       })
-      console.log(JSON.parse(JSON.stringify(this.form)))
-      console.log(this.form)
+      if(this.idx == index){
+        this.form.deletes.splice(this.form.deletes.length - 1,1)
+      }
+      // console.log(JSON.parse(JSON.stringify(this.form)))
+      console.log(this.form.skuAttrList[index])
     },
     addSkuAttrList() {
       // eslint-disable-next-line vue/no-mutating-props
@@ -432,6 +438,8 @@ export default {
     },
     // 删除规格值
     delValue(index, index1) {
+      if(index1 < this.form.skuAttrList[index].values.length -1) return
+      this.idx = index
       const newList = JSON.parse(JSON.stringify(this.form.skuAttrList[index]))
       const valueObj = {
         code: newList.code,
@@ -439,10 +447,11 @@ export default {
         valueCode: newList.values[index1].valueCode
       }
       // eslint-disable-next-line vue/no-mutating-props
-      this.form.deletes.push(valueObj)
-      console.log(this.valueObj)
-      // eslint-disable-next-line vue/no-mutating-props
+      this.form.deletes.push(valueObj);
+      console.log(this.form.deletes,'删除')
+      // console.log(this.valueObj)
       this.form.skuAttrList[index].values.splice(index1, 1)
+      // console.log(this.form.skuAttrList[index].values);
     },
     // 删除规格名
     delSkuAttrList(index) {