From 62487cf7614c11f1611bc41df86e4eff514ec699 Mon Sep 17 00:00:00 2001 From: zyn Date: Wed, 17 Jan 2024 17:35:29 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B3=95=E8=A7=84=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E6=94=B6=E9=9B=86-=E5=8F=91=E8=B5=B7=E6=B5=81=E7=A8=8B):=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AF=84=E4=BC=B0=E4=BA=BA=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=9D=A5=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/initiatingProcess.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue b/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue index ce6019b82..72d7a6744 100644 --- a/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue +++ b/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue @@ -72,7 +72,8 @@ @@ -162,6 +163,17 @@ PersonnelSelection }, mixins:[ResizeHeader, ResizeColumnProvide], + computed: { + evaluatorIds () { + if (this.formInline.evaluatorIds && this.formInline.evaluatorIds instanceof Array) { + return this.formInline.evaluatorIds + } + if (this.formInline.evaluatorIds && typeof(this.formInline.evaluatorIds)==='string') { + return this.formInline.evaluatorIds.split(',') + } + return [] + } + }, data() { return { title: this.$t('regulationEngineerInitiateProcess'), @@ -283,6 +295,9 @@ }, methods: { ...mapGetters(['userInfo']), + evaluatorIdsChange (val) { + this.formInline.evaluatorIds = val + }, getEvaluatorList () { this.$set(this.formInline, 'evaluatorIds', []) if (this.selectedRowKeysRecord.length === 0) {