比对检测计划

This commit is contained in:
sjl
2025-07-21 13:47:56 +08:00
parent c8f3b4eddc
commit e29f25653e
31 changed files with 1174 additions and 673 deletions

View File

@@ -78,6 +78,7 @@ export const useTable = (
});
dataCallBack && (data = dataCallBack(data));
state.tableData = isPageable ? data.records : data;
//console.log(data);
// 解构后台返回的分页数据 (如果有分页更新分页信息)
if (isPageable) {
state.resPageable.total = data.total;
@@ -85,6 +86,7 @@ export const useTable = (
state.resPageable.size = data.size;
}
} catch (error) {
//console.log('123');
requestError && requestError(error);
}
};