feat(log): 移除分析按钮

This commit is contained in:
贾同学
2025-10-28 09:26:19 +08:00
parent 425b54bc44
commit 7abcec7a2e

View File

@@ -3,8 +3,8 @@
<ProTable ref="proTable" :columns="columns" :request-api="getTableList"> <ProTable ref="proTable" :columns="columns" :request-api="getTableList">
<!-- 表格 header 按钮 --> <!-- 表格 header 按钮 -->
<template #tableHeader> <template #tableHeader>
<el-button type="primary" :icon="DataAnalysis">分析</el-button> <!-- <el-button type="primary" :icon="DataAnalysis">分析</el-button>-->
<el-button type="primary" :icon="Upload" @click="handleExport">导出csv</el-button> <el-button type="primary" icon="Download" @click="handleExport">导出csv</el-button>
</template> </template>
</ProTable> </ProTable>
</div> </div>
@@ -13,7 +13,6 @@
// 根据实际路径调整 // 根据实际路径调整
import TimeControl from '@/components/TimeControl/index.vue' import TimeControl from '@/components/TimeControl/index.vue'
import ProTable from '@/components/ProTable/index.vue' import ProTable from '@/components/ProTable/index.vue'
import { DataAnalysis, Upload } from '@element-plus/icons-vue'
import type { ColumnProps, ProTableInstance } from '@/components/ProTable/interface' import type { ColumnProps, ProTableInstance } from '@/components/ProTable/interface'
import { reactive, ref } from 'vue' import { reactive, ref } from 'vue'
import { exportCsv, getAuditLog } from '@/api/system/log' import { exportCsv, getAuditLog } from '@/api/system/log'