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