jiaxing.zhou

refactor(log):重构日志管理页面组件和样式

- 将 Element Plus 组件替换为原生 HTML 元素
- 重新设计搜索区域布局和样式
- 使用原生表格替换 el-table 组件
- 自定义分页控件实现
- 重构对话框组件样式和交互
- 添加全选和单选功能
- 优化响应式设计和移动端适配
- 更新组件类型声明文件
- 改进状态标签和操作按钮样式
- 实现表格视图切换功能
......@@ -8,6 +8,7 @@ export {}
declare module 'vue' {
export interface GlobalComponents {
ElButton: typeof import('element-plus/es')['ElButton']
ElCard: typeof import('element-plus/es')['ElCard']
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
ElDescriptions: typeof import('element-plus/es')['ElDescriptions']
ElDescriptionsItem: typeof import('element-plus/es')['ElDescriptionsItem']
......@@ -25,6 +26,7 @@ declare module 'vue' {
ElTable: typeof import('element-plus/es')['ElTable']
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
ElTag: typeof import('element-plus/es')['ElTag']
ElText: typeof import('element-plus/es')['ElText']
Header: typeof import('./src/components/layout/Header.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
......
This diff is collapsed. Click to expand it.