fix: Fixed frontend list loading failure issue

This commit is contained in:
zhengkunwang223 2025-12-04 17:29:53 +08:00
parent 2417cc9eed
commit b772effacd

View file

@ -109,7 +109,7 @@ const mobile = computed(() => {
return globalStore.isMobile();
});
const tableRef = ref();
const tableHeight = ref(0);
const tableHeight = ref<number | string>('');
const menuRef = ref<HTMLElement | null>(null);
const leftSelect = ref(false);