主数据表格宽度调整

This commit is contained in:
‘huanghaiixia’
2026-03-31 10:29:27 +08:00
parent a5af47d53c
commit 924eac8ad8
14 changed files with 54 additions and 441 deletions

View File

@ -24,24 +24,6 @@ export const searchFormSchema: FormSchema[] = [
getPopupContainer: () => document.body,
},
},
// {
// field: 'code',
// label: '编码',
// component: 'Input',
// },
// {
// field: 'sort',
// label: '显示顺序',
// component: 'InputNumber',
// componentProps: {
// style: { width: '100%' },
// },
// },
// {
// field: 'note',
// label: '备注',
// component: 'Input',
// },
];
export const columns: BasicColumn[] = [
@ -50,7 +32,7 @@ export const columns: BasicColumn[] = [
title: '编码',
componentType: 'input',
align: 'left',
width: 120,
sorter: true,
},
@ -59,7 +41,7 @@ export const columns: BasicColumn[] = [
title: '名称',
componentType: 'input',
align: 'left',
width: 200,
sorter: true,
},
@ -68,7 +50,7 @@ export const columns: BasicColumn[] = [
title: '有效标志',
componentType: 'select',
align: 'left',
width: 80,
sorter: true,
},
@ -86,7 +68,7 @@ export const columns: BasicColumn[] = [
title: '显示顺序',
componentType: 'number',
align: 'left',
width: 100,
sorter: true,
},
];