diff --git a/frontend/src/modules/rightSearchDrawer/monitoringTable/components/monitorInfo.vue b/frontend/src/modules/rightSearchDrawer/monitoringTable/components/monitorInfo.vue index 4ffb64a4..0de5d32b 100644 --- a/frontend/src/modules/rightSearchDrawer/monitoringTable/components/monitorInfo.vue +++ b/frontend/src/modules/rightSearchDrawer/monitoringTable/components/monitorInfo.vue @@ -23,18 +23,20 @@ />
- + + +
@@ -487,7 +489,11 @@ const buildSearchParams = (sort?: { field: string; dir: 'asc' | 'desc' }) => { }; // data 模式表格:点击排序时重新请求接口(服务端排序),与 listUrl 模式效果一致 -const { tableData, handleSortChange } = useServerSortTableData({ +const { + tableData, + isLoading: tableLoading, + handleSortChange +} = useServerSortTableData({ request: getMonitorData, buildSearchParams });