diff --git a/apps/web-antd/src/views/monitor/online/index.vue b/apps/web-antd/src/views/monitor/online/index.vue index 43d9c328..9cb600e6 100644 --- a/apps/web-antd/src/views/monitor/online/index.vue +++ b/apps/web-antd/src/views/monitor/online/index.vue @@ -26,13 +26,13 @@ const gridOptions: VxeGridProps = { columns, height: 'auto', keepSource: true, - pagerConfig: {}, + pagerConfig: { + enabled: false, + }, proxyConfig: { ajax: { - query: async ({ page }, formValues) => { + query: async (_, formValues) => { return await onlineList({ - pageNum: page.currentPage, - pageSize: page.pageSize, ...formValues, }); },