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()