feat(system): 优化系统日志页面布局和功能

- 修改系统日志页面的列配置,增加固定列和对齐方式
- 优化表格组件的样式和功能,支持右列固定和自定义样式
- 调整分页配置,统一表格相关属性
This commit is contained in:
zhoumengru
2025-09-10 09:23:47 +08:00
parent 5a11916a02
commit 1f20215383
24 changed files with 527 additions and 322 deletions

View File

@@ -1,4 +1,4 @@
import { notification } from 'ant-design-vue'
// import { notification } from 'ant-design-vue'
import { h } from 'vue'
import {
CheckCircleFilled,
@@ -41,7 +41,7 @@ const notiInfo = {
}
}
const openNotification = ({ name, type, status, desc = '' }) => {
notification[status]({
this.$notification[status]({
placement: 'bottomRight',
message: notiInfo[status].iconMessage,
description: desc || option.names[name] + option.types[type] + option.status[status],