From f08f52f95a8d9938d11b7a3ca0972476d15d012d Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Wed, 17 Jul 2024 17:11:57 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E6=A0=87=E5=87=86=E6=B3=95=E8=A7=84?= =?UTF-8?q?=E7=AC=A6=E5=90=88=E6=80=A7=E6=8E=92=E6=9F=A5=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E9=A9=B3=E5=9B=9E=E5=88=B0=E7=AC=AC=E4=B8=80=E4=B8=AA=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E7=94=9F=E6=88=90=E6=8C=89=E9=92=AE=E4=B8=8A=E9=9D=A2?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E4=B8=8D=E5=8F=AF=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/EngineerInitBaseInfo.vue | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/EngineerInitBaseInfo.vue b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/EngineerInitBaseInfo.vue index 30ef354..648dcf0 100644 --- a/src/views/workCenter/regulatoryComplianceCheckProcess/modules/EngineerInitBaseInfo.vue +++ b/src/views/workCenter/regulatoryComplianceCheckProcess/modules/EngineerInitBaseInfo.vue @@ -7,23 +7,23 @@
- + {{ $t('workCenter.regulatoryComplianceCheckProcess.addStandard') }} - + {{ $t('workCenter.regulatoryComplianceCheckProcess.manualAddition') }} - + {{ $t('delete') }} - + {{ $t('workCenter.regulatoryComplianceCheckProcess.salvageListTemplateDownload') }} - + {{ $t('workCenter.regulatoryComplianceCheckProcess.carTypeFileTemplateDownload') }}
@@ -59,7 +59,7 @@
- {{ $t('edit') }} + {{ $t('edit') }}
@@ -78,7 +78,8 @@ + v-model="formInline.modelFile" + :disabled="isRejectedData"> @@ -96,6 +97,7 @@ type="radio" @numberChange="marketRegulationNumberChange" :name-str="formInline.applicableMarketNo" + :disabled="isRejectedData" :placeholder="$t('pleaseSelect')+$t('applicableMarket')" /> @@ -111,6 +113,7 @@ @@ -438,12 +441,17 @@ export default { standardInfo: { id: '' } - } + }, + isRejectedData: false // 是否是被驳回的 } }, mounted () { this.getSysCategoryTree() this.getCountryOption() + if (this.$route.query.taskId) { + // 有任务id说明是被驳回的 + this.isRejectedData = true + } }, methods: { // 拿到外面传进来的businessInfoDTO