From 656366d610571c0c91345426f8f162ea45f4e3ce Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?=
<15040126243@163.com>
Date: Tue, 10 Mar 2026 15:37:39 +0800
Subject: [PATCH] =?UTF-8?q?update=20=E4=BC=98=E5=8C=96=E7=BB=9F=E4=B8=80?=
=?UTF-8?q?=E7=94=A8=E6=88=B7=E6=98=B5=E7=A7=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/workflow/task/types.ts | 2 +-
src/components/Process/submitVerify.vue | 14 ++++++++++----
2 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/src/api/workflow/task/types.ts b/src/api/workflow/task/types.ts
index e0367d65..482bd338 100644
--- a/src/api/workflow/task/types.ts
+++ b/src/api/workflow/task/types.ts
@@ -43,7 +43,7 @@ export interface ButtonList {
}
export interface FlowCopyVo {
userId: string | number;
- userName: string;
+ nickName: string;
}
export interface TaskOperationBo {
diff --git a/src/components/Process/submitVerify.vue b/src/components/Process/submitVerify.vue
index a1917ca3..b958d8ed 100644
--- a/src/components/Process/submitVerify.vue
+++ b/src/components/Process/submitVerify.vue
@@ -14,7 +14,7 @@
- {{ user.userName }}
+ {{ user.nickName }}
@@ -80,7 +80,13 @@
-
+
@@ -265,7 +271,7 @@ const openDialog = async (id?: string) => {
selectCopyUserList.value = task.value.copyList;
selectCopyUserIds.value = task.value.copyList.map((e) => e.userId).join(',');
varNodeList.value = task.value.varList;
- console.log('varNodeList', varNodeList.value)
+ console.log('varNodeList', varNodeList.value);
buttonDisabled.value = false;
try {
const data = {
@@ -310,7 +316,7 @@ const handleCompleteTask = async () => {
selectCopyUserList.value.forEach((e) => {
const copyUser = {
userId: e.userId,
- userName: e.userName
+ nickName: e.nickName
};
flowCopyList.push(copyUser);
});