From c45eed90d95a3f6e5273e2bb0e0238bbb5260f23 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Sat, 24 May 2025 11:59:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20dept=20list=20=E5=88=97=E5=AE=BD?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/views/system/dept/data.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/web-antd/src/views/system/dept/data.ts b/apps/web-antd/src/views/system/dept/data.ts index 8ae8a96d..26132ba8 100644 --- a/apps/web-antd/src/views/system/dept/data.ts +++ b/apps/web-antd/src/views/system/dept/data.ts @@ -30,7 +30,6 @@ export const columns: VxeGridProps['columns'] = [ field: 'deptName', title: '部门名称', treeNode: true, - width: 200, }, { field: 'deptCategory', @@ -39,13 +38,9 @@ export const columns: VxeGridProps['columns'] = [ { field: 'orderNum', title: '排序', - resizable: false, - width: 'auto', }, { field: 'status', - resizable: false, - width: 'auto', title: '状态', slots: { default: ({ row }) => { @@ -62,7 +57,8 @@ export const columns: VxeGridProps['columns'] = [ fixed: 'right', slots: { default: 'action' }, title: '操作', - width: 200, + resizable: false, + width: 'auto', }, ];