From 738f76adfcbf102dfbf890b044ba9a25a034cb8c Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期三, 27 三月 2024 16:17:38 +0800 Subject: [PATCH] 1、用户管理页面修改身份字段名称为首页权限并调整其选项值 2、按照新需求完成客户操作工进入后页面所有布局100% 3、调整全局页脚内容 --- src/views/eam/modules/operationCertificateApply/OperationCertificateApplyForm.vue | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/views/eam/modules/operationCertificateApply/OperationCertificateApplyForm.vue b/src/views/eam/modules/operationCertificateApply/OperationCertificateApplyForm.vue index 3064b2e..fa9fee4 100644 --- a/src/views/eam/modules/operationCertificateApply/OperationCertificateApplyForm.vue +++ b/src/views/eam/modules/operationCertificateApply/OperationCertificateApplyForm.vue @@ -88,7 +88,6 @@ }, data() { return { - isAchievement:false, labelCol: { xs: { span: 24 }, sm: { span: 5 } @@ -232,7 +231,7 @@ default: false, required: false }, - isAchievement: { + achievement: { type: Boolean, default: false, required: false @@ -243,7 +242,7 @@ return this.disabled }, achievementDisabled() { - return this.isAchievement + return this.achievement } }, created() { @@ -309,13 +308,15 @@ console.log("formData===>",formData); httpAction(url, formData, method).then((res) => { if (res.success) { - httpAction(this.url.addOperationCertificate, formData.operationCertificateApplyDetailList, 'post').then((res) => { - if (res.success) { - this.$message.success(res.message) - }else { - this.$message.warning(res.message) - } - }) + if(this.achievementDisabled){ + httpAction(this.url.addOperationCertificate, formData.operationCertificateApplyDetailList, 'post').then((res) => { + if (res.success) { + this.$message.success(res.message) + }else { + this.$message.warning(res.message) + } + }) + } this.$message.success(res.message) this.$emit('ok') this.close() -- Gitblit v1.9.3