fix 修复设计器无法选人问题,修复抄送打开弹出选中全部人员问题

This commit is contained in:
gssong
2024-03-07 21:18:08 +08:00
parent 6f9851a4e5
commit d50c90afd1
3 changed files with 160 additions and 53 deletions

View File

@ -59,7 +59,7 @@ const taskId = ref<string>('');
//抄送人
const selectCopyUserList = ref<UserVO[]>([]);
//抄送人id
const selectCopyUserIds = ref<string>('');
const selectCopyUserIds = ref<string>(undefined);
const dialog = reactive<DialogOption>({
@ -76,7 +76,7 @@ const form = ref<Record<string, any>>({
});
//打开弹窗
const openDialog = (id?: string) => {
selectCopyUserIds.value = ''
selectCopyUserIds.value = undefined
selectCopyUserList.value = []
form.value.fileId = undefined
taskId.value = id;