diff --git a/src/api/workflow/task/index.ts b/src/api/workflow/task/index.ts index 6d515ec..87f7a1e 100644 --- a/src/api/workflow/task/index.ts +++ b/src/api/workflow/task/index.ts @@ -191,3 +191,16 @@ export const getNextNodeList = (data: any): any => { data: data }); }; + +/** + * 催办任务 + * @param data参数 + * @returns + */ +export const urgeTask = (data: any): any => { + return request({ + url: '/workflow/task/urgeTask', + method: 'post', + data: data + }); +}; diff --git a/src/components/Process/MessageType.vue b/src/components/Process/MessageType.vue new file mode 100644 index 0000000..4ef5fa9 --- /dev/null +++ b/src/components/Process/MessageType.vue @@ -0,0 +1,100 @@ + + diff --git a/src/views/workflow/task/allTaskWaiting.vue b/src/views/workflow/task/allTaskWaiting.vue index 9dc0c89..64f8f10 100644 --- a/src/views/workflow/task/allTaskWaiting.vue +++ b/src/views/workflow/task/allTaskWaiting.vue @@ -27,7 +27,8 @@