|
@@ -666,6 +666,9 @@
|
|
|
<ImageUpload v-model="form1.attachImage" type="image" :limit=5 :width="150"
|
|
<ImageUpload v-model="form1.attachImage" type="image" :limit=5 :width="150"
|
|
|
:height="150"/>
|
|
:height="150"/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+ <el-form-item label="首营资质证明" prop="qualificationCertificate">
|
|
|
|
|
+ <Material v-model="qualificationArr" type="image" :num="1" :width="150" :height="150" />
|
|
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="handleUpdate1(1)">审核通过</el-button>
|
|
<el-button type="primary" @click="handleUpdate1(1)">审核通过</el-button>
|
|
@@ -743,6 +746,9 @@ export default {
|
|
|
},
|
|
},
|
|
|
drugImageArr: function(val) {
|
|
drugImageArr: function(val) {
|
|
|
this.form.drugImage = val.join(',');
|
|
this.form.drugImage = val.join(',');
|
|
|
|
|
+ },
|
|
|
|
|
+ qualificationArr:function (val) {
|
|
|
|
|
+ this.form.qualificationCertificate = val.join(',');
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
@@ -773,7 +779,8 @@ export default {
|
|
|
|
|
|
|
|
// 药品展示图
|
|
// 药品展示图
|
|
|
drugImageArr: [],
|
|
drugImageArr: [],
|
|
|
-
|
|
|
|
|
|
|
+ //首营资质上传图
|
|
|
|
|
+ qualificationArr: [],
|
|
|
productTuiCateOptions:[],
|
|
productTuiCateOptions:[],
|
|
|
showIput: false,
|
|
showIput: false,
|
|
|
createBnt:true,
|
|
createBnt:true,
|
|
@@ -1272,6 +1279,7 @@ export default {
|
|
|
this.attrs=[];
|
|
this.attrs=[];
|
|
|
this.photoArr=[];
|
|
this.photoArr=[];
|
|
|
this.imageArr=[];
|
|
this.imageArr=[];
|
|
|
|
|
+ this.qualificationArr=[];
|
|
|
},
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
handleQuery() {
|
|
@@ -1320,6 +1328,9 @@ export default {
|
|
|
if (this.form.drugImage != null) {
|
|
if (this.form.drugImage != null) {
|
|
|
this.drugImageArr = this.form.drugImage.split(",");
|
|
this.drugImageArr = this.form.drugImage.split(",");
|
|
|
}
|
|
}
|
|
|
|
|
+ if(this.form.qualificationCertificate !=null){
|
|
|
|
|
+ this.qualificationArr = this.form.qualificationCertificate.split(",");
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
//组装attrs数据
|
|
//组装attrs数据
|
|
|
if(response.attrs!=null){
|
|
if(response.attrs!=null){
|