From 4b21f0bf4247792b039107327fd84205207cd572 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Wed, 10 Jul 2024 16:51:54 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E6=96=B0=E6=B3=95=E8=A7=84=E5=AF=BC?= =?UTF-8?q?=E5=85=A5=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/selection/StandardDetail.vue | 3 +-- .../newRegulationIntroductionProcess/modules/BaseInfoForm.vue | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/selection/StandardDetail.vue b/src/components/selection/StandardDetail.vue index 8f85542..f348549 100644 --- a/src/components/selection/StandardDetail.vue +++ b/src/components/selection/StandardDetail.vue @@ -5,8 +5,7 @@ :value="nameStr || value" :title="value" disabled - :max-length="500" - :placeholder="placeholder"> + :max-length="500"> {{ $t('lookDetail') }} diff --git a/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue b/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue index 2655ace..34f13ee 100644 --- a/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue +++ b/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue @@ -123,6 +123,7 @@ :tree-data="countryOptions" tree-checkable treeCheckStrictly + :disabled="disabled" :placeholder="$t('pleaseSelect')+$t('workCenter.newRegulationImportProcess.applicableMarket')" /> @@ -245,7 +246,7 @@ export default { // 拿到外面传进来的businessInfoDTO initData (data) { // 给表单赋值 - data.applicableMarket = data.applicableMarket.map(item => { + data.applicableMarket = data.applicableMarket.split(',').map(item => { return { value: item } }) this.formInline = Object.assign({}, data)