修改bug

wang
wangwei 3 years ago
parent 4a7e8bf9f1
commit a3033e4a83

@ -141,7 +141,7 @@
</el-button
>
<el-button type="primary" size="mini" icon="search" @click="addCert"
<el-button type="primary" size="mini" icon="search" @click="addCert()"
style="text-align:right"
>添加资质证书
</el-button
@ -515,6 +515,7 @@ export default {
this.closeDialog();
} else {
this.$message.error(response.message);
this.inputQuery.auditStatus=0
}
});
}).catch(() => {
@ -579,6 +580,7 @@ export default {
,
addCert(row) {
this.addCertVisible = true;
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.formName = 2
this.inputQuery.formData = row;
@ -588,7 +590,7 @@ export default {
this.inputQuery.formData.addType=1;
this.editTye = 1;
}
this.addCertVisible = true;
}
,

@ -572,7 +572,6 @@ export default {
},
selectProductFunction(event) {
if (event == null) {
// this.$refs.inputRef.focus();
} else {
@ -580,7 +579,7 @@ export default {
}
if (this.$isBlank(event)) {
if (this.$isBlank(this.formData.corpName) || this.$isBlank(this.formData.billType)) {
if (this.$isBlank(this.formData.fromSubInvCode) || this.$isBlank(this.formData.billType)) {
this.$message.error("往来信息和单据类型不能为空!")
return;
}

Loading…
Cancel
Save