reactor:【system 系统管理】岗位 post 进一步统一代码风格

This commit is contained in:
YunaiV
2025-09-06 15:12:58 +08:00
parent 5f77cde53f
commit a38e55651b
5 changed files with 110 additions and 100 deletions

View File

@@ -64,19 +64,28 @@ export function useGridFormSchema(): VbenFormSchema[] {
fieldName: 'name',
label: '岗位名称',
component: 'Input',
componentProps: {
placeholder: '请输入岗位名称',
allowClear: true,
},
},
{
fieldName: 'code',
label: '岗位编码',
component: 'Input',
componentProps: {
placeholder: '请输入岗位编码',
allowClear: true,
},
},
{
fieldName: 'status',
label: '岗位状态',
component: 'Select',
componentProps: {
allowClear: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
placeholder: '请选择岗位状态',
allowClear: true,
},
},
];
@@ -89,26 +98,32 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'id',
title: '岗位编号',
minWidth: 200,
},
{
field: 'name',
title: '岗位名称',
minWidth: 200,
},
{
field: 'code',
title: '岗位编码',
minWidth: 200,
},
{
field: 'sort',
title: '显示顺序',
minWidth: 100,
},
{
field: 'remark',
title: '岗位备注',
minWidth: 200,
},
{
field: 'status',
title: '岗位状态',
minWidth: 100,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.COMMON_STATUS },
@@ -117,6 +132,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'createTime',
title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{