🔨 查询字段.

This commit is contained in:
lijiahangmax
2025-03-22 00:00:41 +08:00
parent b3009bb65e
commit 76e766367f
18 changed files with 285 additions and 81 deletions

View File

@@ -3,7 +3,7 @@
<a-table row-key="id"
ref="tableRef"
:loading="loading"
:columns="tableColumns"
:columns="logColumns"
:data="tableRenderData"
:pagination="pagination"
:bordered="false"
@@ -112,7 +112,7 @@
const { getDictValue } = useDictStore();
const jsonView = ref();
const tableColumns = ref();
const logColumns = ref();
const tableRenderData = ref<OperatorLogQueryResponse[]>([]);
// 查看详情
@@ -178,7 +178,7 @@
// 不显示操作
cols = cols.filter(s => s.dataIndex !== 'handle');
}
tableColumns.value = cols;
logColumns.value = cols;
// 加载数据
fetchTableData();
});