!93 fix(dq): 状态统计随搜索刷新,并添加错误日志

Merge pull request !93 from wsm/fix/dq_inspect_status_show
This commit is contained in:
wsm
2026-07-13 07:55:52 +00:00
committed by Gitee
@@ -199,6 +199,7 @@
return Object.assign(params, queryParam); return Object.assign(params, queryParam);
}, },
afterFetch: async (items) => { afterFetch: async (items) => {
fetchStatusStats();
return calcLedgerRowSpan(items); return calcLedgerRowSpan(items);
}, },
}, },
@@ -241,7 +242,7 @@
Object.assign(statsData, res); Object.assign(statsData, res);
} }
} catch (e) { } catch (e) {
// stats fetch failure is non-critical console.error('【巡视整改-状态统计】获取状态统计数据失败', e);
} }
} }