Authored by htoooth

fix

... ... @@ -28,7 +28,7 @@
</Form-item>
</Col>
<Col span="6" offset="1" v-if="show[2]">
<Col span="8" v-if="show[2]">
<Form-item>
<Select v-model="pickedSortId[2]" placeholder="二级类目" @on-change="selectSort2" :label-in-value="true">
<Option v-for="sort in sorts[2]" :value="sort.sortId" :key="sort">{{ sort.sortName }}</Option>
... ... @@ -36,7 +36,7 @@
</Form-item>
</Col>
<Col span="6" offset="1" v-if="show[3]">
<Col span="8" v-if="show[3]">
<Form-item>
<Select v-model="pickedSortId[3]" placeholder="三级类目" @on-change="selectSort3" :label-in-value="true">
<Option v-for="sort in sorts[3]" :value="sort.sortId" :key="sort">{{ sort.sortName }}</Option>
... ...
... ... @@ -725,6 +725,7 @@ export default {
newProduct.attributeProValuesTwo = JSON.stringify(this.handleOne());
newProduct.productMaterial = this.product.materialList.map(s => s.id).join(',');
newProduct.productIntro = this.product.productIntro;
return newProduct;
},
... ...