From c5ec7a6ed5c5b52c556105e2cad65ab4b46db1d4 Mon Sep 17 00:00:00 2001 From: zhengmingliang Date: Mon, 14 Nov 2022 14:51:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=87=87=E8=B4=AD=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E6=96=B0=E5=A2=9E=E6=8F=90=E4=BA=A4bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../purchase/supManufacturerEditDialog.vue | 27 +++++++++---------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/views/purchase/supManufacturerEditDialog.vue b/src/views/purchase/supManufacturerEditDialog.vue index 4ef0030..f7a5cb7 100644 --- a/src/views/purchase/supManufacturerEditDialog.vue +++ b/src/views/purchase/supManufacturerEditDialog.vue @@ -15,7 +15,7 @@ size="mini" icon="search" v-if="inputQuery.auditStatus == 0" - @click="onModifySubmit(0)" + @click="addOrModifyCompany(0)" >草稿保存 @@ -500,19 +500,25 @@ export default { }, methods: { onModifySubmit(type) { - + //判断本企业产品是否是通过审核的 - if(type==3){ let query = { customerId: this.$store.getters.customerId - } - getCompany(query) - .then((response) => { + } + getCompany(query) + .then((response) => { if(response.data.auditStatus!=1){ this.$message.error("本企业信息还未通过审核!"); + falg=false; return; }else{ - this.$refs["inputQuery"].validate(valid => { + this.addOrModifyCompany(type); + }}).catch(() => { + + }); + }, + addOrModifyCompany (type){ + this.$refs["inputQuery"].validate(valid => { if (valid) { let formData = JSON.parse(JSON.stringify(this.inputQuery)); @@ -533,13 +539,6 @@ export default { return false; } }); - } - }).catch(() => { - - }); - } - - }, certHandleCurrentChange(val) { this.certQuery.page = val;