diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue index 6a0d12b3a..011fe2e68 100644 --- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -831,7 +831,7 @@ startProcess(value) { let query = { type: 1, - msg: JSON.stringify(value) + msg: value } postAction('/workFlow/startProcess', query).then((res) => { if (res.success) { @@ -847,7 +847,12 @@ } postAction('/workFlow/completeTask', query).then((res) => { if (res.success) { - + this.visible = false + this.selectedRowKeys = [] + this.$message.success(this.$t('OperationSuccessful')) + this.$route + } else { + this.$message.warning(this.$t('operationFailed')) } }) },