admin-vben5/apps/web-antd/src/views/system/post/data.ts

91 lines
1.8 KiB
TypeScript
Raw Normal View History

2024-09-13 15:27:29 +08:00
import { DictEnum } from '@vben/constants';
import { getPopupContainer } from '@vben/utils';
import { type FormSchemaGetter } from '#/adapter';
import { getDictOptions } from '#/utils/dict';
2024-09-24 11:23:02 +08:00
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
fieldName: 'postCode',
label: '岗位编码',
},
{
component: 'Input',
fieldName: 'postName',
label: '岗位名称',
},
{
component: 'Select',
componentProps: {
getPopupContainer,
options: getDictOptions(DictEnum.SYS_NORMAL_DISABLE),
},
fieldName: 'status',
label: '状态',
},
];
2024-09-13 15:27:29 +08:00
export const drawerSchema: FormSchemaGetter = () => [
{
component: 'Input',
dependencies: {
show: () => false,
triggerFields: [''],
},
fieldName: 'id',
label: 'id',
},
{
component: 'TreeSelect',
componentProps: {
class: 'w-full',
getPopupContainer,
},
fieldName: 'deptId',
label: '所属部门',
rules: 'selectRequired',
2024-09-13 15:27:29 +08:00
},
{
component: 'Input',
fieldName: 'postName',
label: '岗位名称',
rules: 'required',
},
{
component: 'Input',
fieldName: 'postCode',
label: '岗位编码',
rules: 'required',
},
{
component: 'Input',
fieldName: 'postCategory',
label: '类别编码',
},
{
component: 'InputNumber',
fieldName: 'postSort',
label: '岗位排序',
rules: 'required',
},
{
component: 'RadioGroup',
componentProps: {
buttonStyle: 'solid',
options: getDictOptions(DictEnum.SYS_NORMAL_DISABLE),
optionType: 'button',
},
defaultValue: '0',
2024-09-25 21:08:56 +08:00
fieldName: 'status',
2024-09-13 15:27:29 +08:00
label: '岗位状态',
rules: 'required',
},
{
component: 'Textarea',
fieldName: 'remark',
formItemClass: 'items-baseline',
label: '备注',
},
];