update 补充参数
This commit is contained in:
parent
6b2838141a
commit
597c8370d3
@ -85,9 +85,13 @@ const task = ref<FlowTaskVO>({
|
|||||||
nodeName: undefined,
|
nodeName: undefined,
|
||||||
flowCode: undefined,
|
flowCode: undefined,
|
||||||
flowStatus: undefined,
|
flowStatus: undefined,
|
||||||
|
formCustom: undefined,
|
||||||
|
formPath: undefined,
|
||||||
nodeType: undefined,
|
nodeType: undefined,
|
||||||
nodeRatio: undefined,
|
nodeRatio: undefined,
|
||||||
version: undefined
|
version: undefined,
|
||||||
|
applyNode: undefined,
|
||||||
|
buttonList: []
|
||||||
});
|
});
|
||||||
|
|
||||||
const open = (taskId: string) => {
|
const open = (taskId: string) => {
|
||||||
@ -171,7 +175,7 @@ const deleteMultiInstanceUser = async (row) => {
|
|||||||
};
|
};
|
||||||
//获取办理人
|
//获取办理人
|
||||||
const handleTaskUser = async () => {
|
const handleTaskUser = async () => {
|
||||||
let data = await currentTaskAllUser(task.value.id);
|
const data = await currentTaskAllUser(task.value.id);
|
||||||
deleteUserList.value = data.data;
|
deleteUserList.value = data.data;
|
||||||
if (deleteUserList.value && deleteUserList.value.length > 0) {
|
if (deleteUserList.value && deleteUserList.value.length > 0) {
|
||||||
deleteUserList.value.forEach((e) => {
|
deleteUserList.value.forEach((e) => {
|
||||||
@ -183,7 +187,7 @@ const handleTaskUser = async () => {
|
|||||||
|
|
||||||
//终止任务
|
//终止任务
|
||||||
const handleTerminationTask = async () => {
|
const handleTerminationTask = async () => {
|
||||||
let params = {
|
const params = {
|
||||||
taskId: task.value.id,
|
taskId: task.value.id,
|
||||||
comment: ''
|
comment: ''
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user