Revert "fix: 更新表格增加minWidth属性"

This reverts commit b52f3ba0c5.
This commit is contained in:
dap
2025-05-08 09:26:03 +08:00
parent c57d3f32b5
commit 540f24ed43
17 changed files with 10 additions and 92 deletions

View File

@@ -30,36 +30,32 @@ export const columns: VxeGridProps['columns'] = [
field: 'deptName',
title: '部门名称',
treeNode: true,
resizable: false,
minWidth: 220,
width: 200,
},
{
field: 'deptCategory',
title: '类别编码',
resizable: false,
minWidth: 120,
},
{
field: 'orderNum',
title: '排序',
resizable: false,
width: 80,
width: 'auto',
},
{
field: 'status',
resizable: false,
width: 'auto',
title: '状态',
slots: {
default: ({ row }) => {
return renderDict(row.status, DictEnum.SYS_NORMAL_DISABLE);
},
},
width: 120,
},
{
field: 'createTime',
title: '创建时间',
minWidth: 160,
},
{
field: 'action',