😎优化文件管理列表,去掉无效列

This commit is contained in:
zuohuaijun 2025-07-08 11:03:07 +08:00
parent 57b5f03669
commit 6398193780
2 changed files with 4 additions and 5 deletions

View File

@ -96,8 +96,8 @@
"@types/node": "^22.15.35",
"@types/nprogress": "^0.2.3",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"@vue/compiler-sfc": "^3.5.17",

View File

@ -218,9 +218,8 @@ const options = useVxeTable<SysFile>(
{ field: 'isPublic', title: '是否公开', minWidth: 80, showOverflow: 'tooltip', slots: { default: 'row_isPublic' } },
{ field: 'createTime', title: '创建时间', minWidth: 150, showOverflow: 'tooltip' },
{ field: 'fileType', title: '类别', minWidth: 140, showOverflow: 'tooltip' },
{ field: 'relationName', title: '关联对象名称', minWidth: 120, showOverflow: 'tooltip' },
{ field: 'relationId', title: '关联对象ID', minWidth: 120, showOverflow: 'tooltip' },
{ field: 'belongId', title: '所属ID', minWidth: 120, showOverflow: 'tooltip' },
{ field: 'fileAlias', title: '别名', minWidth: 120, showOverflow: 'tooltip' },
{ field: 'dataId', title: '业务数据ID', minWidth: 120, showOverflow: 'tooltip' },
// { field: 'userName', title: '', minWidth: 150, showOverflow: 'tooltip', sortable: true },
{ field: 'remark', title: '备注', minWidth: 200, showOverflow: 'tooltip' },
{ field: 'buttons', title: '操作', fixed: 'right', width: 150, showOverflow: true, slots: { default: 'row_buttons' } },