|
@@ -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="售价">
|
|
@@ -307,7 +307,7 @@ export default {
|
|
|
},
|
|
|
fileList: [],
|
|
|
// 记录当前是哪里增加或者删除的
|
|
|
- idx:null
|
|
|
+ idx: null
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -347,7 +347,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()
|
|
|
}
|
|
@@ -410,8 +410,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])
|
|
@@ -438,7 +438,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 = {
|
|
@@ -447,8 +447,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);
|