feat: 🚀 修复bug

This commit is contained in:
2025-10-14 17:46:22 +08:00
parent 54522f7ca2
commit f057f07ce7
2 changed files with 1 additions and 2 deletions

View File

@@ -6,7 +6,6 @@
export {}
declare global {
const EffectScope: typeof import("vue")["EffectScope"];
const ElMessage: typeof import("element-plus/es")["ElMessage"];
const ElMessageBox: typeof import("element-plus/es")["ElMessageBox"];
const computed: typeof import("vue")["computed"];
const createApp: typeof import("vue")["createApp"];

View File

@@ -25,7 +25,7 @@ export const handleReload = async (params: any) => {
const result = await getMaterialListReloadApi({ id });
if (result?.code === 0) {
useMsg("success", "数据刷新成功 ");
proTable.value!.getTableList();
proTable?.value!.getTableList();
}
};