diff --git a/ruoyi-ui/src/views/flowable/task/record/index.vue b/ruoyi-ui/src/views/flowable/task/record/index.vue index 1a66b2c..eb64c97 100644 --- a/ruoyi-ui/src/views/flowable/task/record/index.vue +++ b/ruoyi-ui/src/views/flowable/task/record/index.vue @@ -17,7 +17,7 @@ 退回 - + 驳回 @@ -130,23 +130,36 @@ - - - - {{item.name}} - + + + + {{item.name}} + + + + - + + + 取 消 + 确 定 + + + + + + + - 取 消 - 确 定 + 取 消 + 确 定 @@ -225,6 +238,8 @@ export default { completeOpen: false, returnTitle: null, returnOpen: false, + rejectOpen: false, + rejectTitle: null, userData:[], }; }, @@ -477,6 +492,11 @@ export default { }, /** 驳回任务 */ handleReject() { + this.rejectOpen = true; + this.rejectTitle = "驳回流程"; + }, + /** 驳回任务 */ + taskReject() { this.$refs["taskForm"].validate(valid => { if (valid) { rejectTask(this.taskForm).then(res => {