|
@@ -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) {
|