From d50c90afd1ebe4f71429616d2c5dd1ccbeab4acf Mon Sep 17 00:00:00 2001
From: gssong <1742057357@qq.com>
Date: 星期四, 07 三月 2024 21:18:08 +0800
Subject: [PATCH] fix 修复设计器无法选人问题,修复抄送打开弹出选中全部人员问题

---
 src/components/Process/submitVerify.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/Process/submitVerify.vue b/src/components/Process/submitVerify.vue
index b52854f..da30ed7 100644
--- a/src/components/Process/submitVerify.vue
+++ b/src/components/Process/submitVerify.vue
@@ -59,7 +59,7 @@
 //鎶勯�佷汉
 const selectCopyUserList = ref<UserVO[]>([]);
 //鎶勯�佷汉id
-const selectCopyUserIds = ref<string>('');
+const selectCopyUserIds = ref<string>(undefined);
   
 
 const dialog = reactive<DialogOption>({
@@ -76,7 +76,7 @@
 });
 //鎵撳紑寮圭獥
 const openDialog = (id?: string) => {
-  selectCopyUserIds.value = ''
+  selectCopyUserIds.value = undefined
   selectCopyUserList.value = []
   form.value.fileId = undefined
   taskId.value = id;

--
Gitblit v1.9.3