fix: 修复选人组件缺少引用导致编译器warning

This commit is contained in:
gaoyunqi
2025-06-10 16:04:31 +08:00
parent 2d41d13fe4
commit 36c743068c

View File

@ -74,6 +74,7 @@
import SelectUserListV2 from '/@/components/Form/src/components/SelectUserListV2.vue';
import { camelCaseString } from '/@/utils/stringUtil';
import { useUserStore } from '/@/store/modules/user';
import { Icon } from '/@/components/Icon';
const emits = defineEmits(['update:value', 'selectedId', 'change']);
const { t } = useI18n();
@ -258,7 +259,7 @@
async function getUserList(params) {
return await getUserPageListNew(params);
}
function departCompleted() {
treeLoading.value = false;
}