修复bug

This commit is contained in:
weipengfei 2023-10-07 17:53:35 +08:00
parent 78ec33d360
commit 5e604567dd
2 changed files with 43 additions and 11 deletions

View File

@ -790,11 +790,31 @@
<el-row v-if="currentTab == '3'"> <el-row v-if="currentTab == '3'">
<el-col :span="24"> <el-col :span="24">
<el-form-item label="商品详情:"> <el-form-item label="商品详情:">
<vue-ueditor-wrap <el-input
v-model="formValidate.content.title"
placeholder="请输入商品详情"
class="selWidth"
type="textarea"
/>
</el-form-item>
<el-form-item label="商品图片:">
<!-- <vue-ueditor-wrap
v-model="formValidate.content" v-model="formValidate.content"
:config="myConfig" :config="myConfig"
@beforeInit="addCustomDialog" @beforeInit="addCustomDialog"
/> /> -->
<div
class="upLoadPicBox"
title="750*750px"
@click="modalPicTap('3')"
>
<div v-for="(item, index) in formValidate.content.image" class="pictrue details_pictrue">
<img :src="item" :key="index">
</div>
<div class="upLoad details_pictrue">
<i class="el-icon-camera cameraIconfont" />
</div>
</div>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -1276,7 +1296,11 @@ const defaultObj = {
attr: [], attr: [],
extension_type: 0, extension_type: 0,
integral_rate: -1, integral_rate: -1,
content: '', content: {
title: '',
image: [],
},
// content: '',
spec_type: 0, spec_type: 0,
give_coupon_ids: [], give_coupon_ids: [],
is_gift_bag: 0, is_gift_bag: 0,
@ -1418,7 +1442,7 @@ export default {
], ],
mer_cate_id: [ mer_cate_id: [
{ {
required: true, message: '请选择商户商品分类', trigger: 'change' required: false, message: '请选择商户商品分类', trigger: 'change'
} }
], ],
cate_id: [ cate_id: [
@ -2173,6 +2197,7 @@ export default {
this.fullscreenLoading = true; this.fullscreenLoading = true;
productDetailApi(this.$route.params.id) productDetailApi(this.$route.params.id)
.then(async res => { .then(async res => {
if(res.data.content_arr)res.data.content = res.data.content_arr;
let info = res.data; let info = res.data;
this.infoData(info); this.infoData(info);
this.getSpecsLst(info.cate_id); this.getSpecsLst(info.cate_id);
@ -2296,6 +2321,9 @@ export default {
if (tit === "1" && num === "pi") { if (tit === "1" && num === "pi") {
_this.oneFormBatch[0].image = img[0]; _this.oneFormBatch[0].image = img[0];
} }
if (tit === "3"){
_this.formValidate.content.image = img;
}
}, tit); }, tit);
}, },
handleSubmitUp() { handleSubmitUp() {
@ -2360,9 +2388,9 @@ export default {
if (!this.formValidate.cate_id) { if (!this.formValidate.cate_id) {
return this.$message.warning("基本信息-平台商品分类不能为空"); return this.$message.warning("基本信息-平台商品分类不能为空");
} }
if (!this.formValidate.mer_cate_id) { // if (!this.formValidate.mer_cate_id) {
return this.$message.warning("基本信息-商户商品分类不能为空"); // return this.$message.warning("-");
} // }
if (!this.formValidate.image) { if (!this.formValidate.image) {
return this.$message.warning("基本信息-商品封面图不能为空"); return this.$message.warning("基本信息-商品封面图不能为空");
} }
@ -2670,6 +2698,10 @@ export default {
height: 100%; height: 100%;
} }
} }
.details_pictrue{
width: 120px;
height: 120px;
}
.iview-video-style { .iview-video-style {
width: 40%; width: 40%;
height: 180px; height: 180px;

View File

@ -269,7 +269,7 @@ export default {
ruleInline: { ruleInline: {
mer_cate_id: [ mer_cate_id: [
{ {
required: true, required: false,
message: '请选择商户分类', message: '请选择商户分类',
trigger: 'change', trigger: 'change',
type: 'array', type: 'array',
@ -521,9 +521,9 @@ export default {
that.loading1 = false that.loading1 = false
}) })
} else { } else {
if (!that.formValidate.mer_cate_id) { // if (!that.formValidate.mer_cate_id) {
that.$message.warning('请选择商户商品分类!') // that.$message.warning('')
} // }
} }
}) })
}, },