|
@@ -68,6 +68,17 @@
|
|
|
label="0">下架
|
|
|
</el-radio>
|
|
|
</el-form-item>
|
|
|
+ <!--todo 缺存酒字段-->
|
|
|
+ <el-form-item prop="product_status"
|
|
|
+ :rules="formRules.required"
|
|
|
+ label="是否支持存酒:">
|
|
|
+ <el-radio v-model="form.product_status"
|
|
|
+ label="1">支持
|
|
|
+ </el-radio>
|
|
|
+ <el-radio v-model="form.product_status"
|
|
|
+ label="0">不支持
|
|
|
+ </el-radio>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item prop="product_desc"
|
|
|
label="商品描述:">
|
|
|
<tinymce :height="300" v-model="form.product_desc"/>
|
|
@@ -120,6 +131,7 @@
|
|
|
filterable
|
|
|
allow-create
|
|
|
default-first-option
|
|
|
+ @change="handleChange($event, index)"
|
|
|
placeholder="请选择附加名"
|
|
|
style="width: 100%;">
|
|
|
<el-option
|
|
@@ -331,6 +343,9 @@ export default {
|
|
|
}
|
|
|
return arr[index].attach_content.split(',')
|
|
|
},
|
|
|
+ handleChange (val, index) {
|
|
|
+ this.$set(this.form.attachs[index], 'attach_content', [])
|
|
|
+ },
|
|
|
handleSubmit () {
|
|
|
const url = this.exData.id ? '/v1/bar/product/modify' : '/v1/bar/product/add'
|
|
|
this.$refs.form.validate(async valid => {
|