|
@@ -221,7 +221,9 @@ export default {
|
|
|
voucherId: '', // 允许使用的代金卷ID
|
|
|
voucherPrice: '' // 代金卷最大的使用限额
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ // 是否是选品中心在商品
|
|
|
+ ifSelection:1
|
|
|
},
|
|
|
params: {
|
|
|
applyPrice: 0,
|
|
@@ -312,6 +314,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
// console.log(this.voucherList)
|
|
|
this.groups()
|
|
|
this.selectList()
|
|
@@ -376,7 +381,7 @@ export default {
|
|
|
this.form = {
|
|
|
productName: '',
|
|
|
productBrief: '',
|
|
|
- shopGroupId: '',
|
|
|
+ shopGroupId: '0',
|
|
|
classifyId: '',
|
|
|
supplierName: '',
|
|
|
ifLogistics: '',
|
|
@@ -413,7 +418,9 @@ export default {
|
|
|
voucherId: 0,
|
|
|
style: ''
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ // 是否是选品中心在商品
|
|
|
+ ifSelection:1
|
|
|
}
|
|
|
this.params = {
|
|
|
applyPrice: 0,
|
|
@@ -494,7 +501,6 @@ export default {
|
|
|
},
|
|
|
// 保存
|
|
|
async save() {
|
|
|
- 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 === '') {
|
|
@@ -556,23 +562,23 @@ export default {
|
|
|
// 获取详情
|
|
|
async details() {
|
|
|
const res = await getClassifyGetById({ productId: this.productId })
|
|
|
- this.form = res.data
|
|
|
+ this.form = res.data;
|
|
|
this.$set(this.form, 'productText', res.data.productText)
|
|
|
- // this.form.productText = res.data.productText
|
|
|
- // console.log(this.form.productText, 'productText')
|
|
|
- if (res.data.names.length !== 0) {
|
|
|
- this.params.skuAttrList = res.data.names
|
|
|
- }
|
|
|
- // this.params.skuAttrList.forEach((item) => {
|
|
|
- // var data = {}
|
|
|
- // var arr = Object.keys(res.data)
|
|
|
- // if (arr.length === 0) {
|
|
|
- // item.needImg = false
|
|
|
- // }
|
|
|
- // })
|
|
|
- this.params.skuList = this.form.skus
|
|
|
- this.params.attrStyle = res.data.skus[0].style
|
|
|
- this.params.imgs = res.data.images
|
|
|
+ // this.form.productText = res.data.productText
|
|
|
+ // console.log(this.form.productText, 'productText')
|
|
|
+ if (res.data.names.length !== 0) {
|
|
|
+ this.params.skuAttrList = res.data.names
|
|
|
+ }
|
|
|
+ // this.params.skuAttrList.forEach((item) => {
|
|
|
+ // var data = {}
|
|
|
+ // var arr = Object.keys(res.data)
|
|
|
+ // if (arr.length === 0) {
|
|
|
+ // item.needImg = false
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ this.params.skuList = this.form.skus
|
|
|
+ this.params.attrStyle = res.data.skus[0]?.style
|
|
|
+ this.params.imgs = res.data.images
|
|
|
},
|
|
|
async selectList() {
|
|
|
const res = await getClassify()
|