fix 修复设计器无法选人问题,修复抄送打开弹出选中全部人员问题
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user