fix: type error
parent
fb4af81e3f
commit
382757b458
|
@ -35,7 +35,7 @@ interface DeptTreeNode {
|
||||||
|
|
||||||
defineOptions({ name: 'UserSelectModal' });
|
defineOptions({ name: 'UserSelectModal' });
|
||||||
|
|
||||||
const props = withDefaults(
|
withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
cancelText?: string;
|
cancelText?: string;
|
||||||
confirmText?: string;
|
confirmText?: string;
|
||||||
|
@ -216,7 +216,9 @@ async function loadUserData(pageNo: number, pageSize: number) {
|
||||||
if (newUsers.length > 0) {
|
if (newUsers.length > 0) {
|
||||||
userList.value.push(...newUsers);
|
userList.value.push(...newUsers);
|
||||||
}
|
}
|
||||||
} finally {}
|
} finally {
|
||||||
|
//
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 更新右侧列表数据
|
// 更新右侧列表数据
|
||||||
|
|
Loading…
Reference in New Issue