From ae5e3bcdd4b9a60865edf32a19367bb11ea6fc9d Mon Sep 17 00:00:00 2001 From: zyn Date: Wed, 17 Jan 2024 11:31:42 +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 | 37 +++++++++++++++---- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue b/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue index 1eb8bf805..270fce171 100644 --- a/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue +++ b/jero-web/src/views/businessSupport/collectionOfRegulatoryOpinions/components/initiatingProcess.vue @@ -61,12 +61,22 @@ {{$t('Assessor')}} - + + + + + + + + + {{ i.username }} + + @@ -156,7 +166,8 @@ //url传参严格按照当前命名 url: { seachList: 'document/bussDocumentLibraryEO/queryCondition', //搜索字段 - addModelList: '/dummy/dummyInventoryInfoEO/queryPageDummy' + addModelList: '/dummy/dummyInventoryInfoEO/queryPageDummy', + getEvaluatorList: '/project/projectLawsInventoryEO/getEvaluatorList', }, loading: false, JLoading: false, @@ -243,7 +254,8 @@ width: 150, dataIndex: 'corresponding_standard' } - ] + ], + evaluatorIdsNameOptions: [], } }, mounted() { @@ -262,6 +274,14 @@ }, methods: { ...mapGetters(['userInfo']), + getEvaluatorList () { + const query = { documentId: this.selectedRowKeysRecord[0].id } + getAction(this.url.getEvaluatorList, query).then((res) => { + if (res.success) { + this.evaluatorIdsNameOptions = res.result + } + }) + }, disabledDate(current) { return current && current < moment().subtract(1, 'day') }, @@ -302,6 +322,7 @@ return res.id == this.selectedRowKeys[0] }) this.selectedRowKeysRecord = [...this.selectedRowKeysRecord] + this.getEvaluatorList() }, clickButtonToUpload(item) { this.$refs.uploadFile.perentHandleFunc()