From 9d38ba7909156f70279192dd59c94073d1b163eb Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期日, 03 八月 2025 11:47:00 +0800
Subject: [PATCH] 去掉固化状态列
---
src/views/flow/todolist.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/flow/todolist.vue b/src/views/flow/todolist.vue
index a7b53c6..d8cd0e9 100644
--- a/src/views/flow/todolist.vue
+++ b/src/views/flow/todolist.vue
@@ -365,8 +365,8 @@
processInstanceId: this.row.processInstanceId,
// programIds: this.row.taskDefinitionKey === 'programmingTask' ? this.applist.map(v => v.id).join(',') : '',
}).then(res => {
- if(res.code !== 200) {
- this.$message.error(res.msg);
+ if(res.data.code !== 200) {
+ this.$message.error(res.data.msg);
done();
return;
}
--
Gitblit v1.9.3