Browse Source

Merge branch 'master' of http://159.75.201.17:3000/zwq/tuanfeng-pc-mer

wzy 1 year ago
parent
commit
aec94abab2
1 changed files with 8 additions and 8 deletions
  1. 8 8
      src/views/commodity/commoditySystem/addComponent.vue

+ 8 - 8
src/views/commodity/commoditySystem/addComponent.vue

@@ -45,7 +45,7 @@
         <el-table :data="skuList" style="width: 100%" :header-cell-style="{ background: '#EEF3FF', color: '#333333' }">
           <el-table-column label="规格">
             <template slot-scope="scope">
-              <el-input v-model="singleStyle.skuValue" :sss="scope" maxlength="10" />
+              <el-input v-model="singleStyle.skuValue" :sss="scope" maxlength="20" />
             </template>
           </el-table-column>
           <el-table-column label="售价">
@@ -326,7 +326,7 @@ export default {
       },
       fileList: [],
       //  记录当前是哪里增加或者删除的
-      idx:null,
+      idx:null
     }
   },
   computed: {
@@ -366,7 +366,7 @@ export default {
             const hasChild = skuAttr.values.some((attr) => attr.skuValue)
             return skuAttr.skuName && hasChild
           })
-          // console.log(hasChilds);
+        // console.log(hasChilds);
         if (this.form.attrStyle === 1 && hasChilds.length) {
           this.skuFormat()
         }
@@ -429,8 +429,8 @@ export default {
         skuValue: '',
         image: ''
       })
-      if(this.idx == index){
-        this.form.deletes.splice(this.form.deletes.length - 1,1)
+      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])
@@ -457,7 +457,7 @@ export default {
     },
     // 删除规格值
     delValue(index, index1) {
-      if(index1 < this.form.skuAttrList[index].values.length -1) return
+      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 = {
@@ -466,8 +466,8 @@ export default {
         valueCode: newList.values[index1].valueCode
       }
       // eslint-disable-next-line vue/no-mutating-props
-      this.form.deletes.push(valueObj);
-      console.log(this.form.deletes,'删除')
+      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);