feat: 🚀 增加容错性

This commit is contained in:
2025-10-16 16:39:17 +08:00
parent 9aa3782667
commit f08b094efc
5 changed files with 8 additions and 8 deletions

View File

@@ -101,7 +101,7 @@ const handleSearch = async (params: any) => {
dataStore.initParam = cloneDeep(params);
//这里需要等到表格刷新以后才去请求
nextTick(() => {
proTable.value!.getTableList();
proTable?.value!.getTableList();
});
};
//重置
@@ -110,7 +110,7 @@ const handleReset = () => {
init();
//这里需要等到表格刷新以后才去请求
nextTick(() => {
proTable.value!.getTableList();
proTable?.value!.getTableList();
});
};
const handleClickSuccess = (row: any) => {