From 20aeb8359d7760cf4a72de388d0d21c00a1013bc Mon Sep 17 00:00:00 2001 From: zyn Date: Wed, 17 Jan 2024 16:58:41 +0800 Subject: [PATCH] =?UTF-8?q?feature(=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, 15 insertions(+), 2 deletions(-) diff --git a/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue b/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue index 270fce171..ce6019b82 100644 --- a/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue +++ b/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue @@ -60,17 +60,19 @@ * {{$t('Assessor')}} - + + + @@ -192,6 +194,13 @@ trigger: 'change' } ], + evaluatorIds: [ + { + required: true, + message: this.$t('Assessor') + this.$t('cannotEmpty'), + trigger: 'change' + } + ], brands: [ { required: true, @@ -275,6 +284,10 @@ methods: { ...mapGetters(['userInfo']), getEvaluatorList () { + this.$set(this.formInline, 'evaluatorIds', []) + if (this.selectedRowKeysRecord.length === 0) { + return this.evaluatorIdsNameOptions = [] + } const query = { documentId: this.selectedRowKeysRecord[0].id } getAction(this.url.getEvaluatorList, query).then((res) => { if (res.success) {