86 lines
1.7 KiB
TypeScript
86 lines
1.7 KiB
TypeScript
![]() |
import { DictEnum } from '@vben/constants';
|
||
|
import { getPopupContainer } from '@vben/utils';
|
||
|
|
||
|
import { type FormSchemaGetter } from '#/adapter';
|
||
|
import { getDictOptions } from '#/utils/dict';
|
||
|
|
||
|
export const drawerSchema: FormSchemaGetter = () => [
|
||
|
{
|
||
|
component: 'Input',
|
||
|
dependencies: {
|
||
|
show: () => false,
|
||
|
triggerFields: [''],
|
||
|
},
|
||
|
fieldName: 'id',
|
||
|
label: 'id',
|
||
|
},
|
||
|
{
|
||
|
component: 'TreeSelect',
|
||
|
componentProps: {
|
||
|
class: 'w-full',
|
||
|
getPopupContainer,
|
||
|
placeholder: '请选择',
|
||
|
},
|
||
|
fieldName: 'deptId',
|
||
|
label: '所属部门',
|
||
|
rules: 'required',
|
||
|
},
|
||
|
{
|
||
|
component: 'Input',
|
||
|
componentProps: {
|
||
|
placeholder: '请输入',
|
||
|
},
|
||
|
fieldName: 'postName',
|
||
|
label: '岗位名称',
|
||
|
rules: 'required',
|
||
|
},
|
||
|
{
|
||
|
component: 'Input',
|
||
|
componentProps: {
|
||
|
placeholder: '请输入',
|
||
|
},
|
||
|
fieldName: 'postCode',
|
||
|
label: '岗位编码',
|
||
|
rules: 'required',
|
||
|
},
|
||
|
{
|
||
|
component: 'Input',
|
||
|
componentProps: {
|
||
|
placeholder: '请输入',
|
||
|
},
|
||
|
fieldName: 'postCategory',
|
||
|
label: '类别编码',
|
||
|
},
|
||
|
{
|
||
|
component: 'InputNumber',
|
||
|
componentProps: {
|
||
|
class: 'w-full',
|
||
|
placeholder: '请输入',
|
||
|
},
|
||
|
fieldName: 'postSort',
|
||
|
label: '岗位排序',
|
||
|
rules: 'required',
|
||
|
},
|
||
|
{
|
||
|
component: 'RadioGroup',
|
||
|
componentProps: {
|
||
|
buttonStyle: 'solid',
|
||
|
options: getDictOptions(DictEnum.SYS_NORMAL_DISABLE),
|
||
|
optionType: 'button',
|
||
|
},
|
||
|
defaultValue: '0',
|
||
|
fieldName: 'postStatus',
|
||
|
label: '岗位状态',
|
||
|
rules: 'required',
|
||
|
},
|
||
|
{
|
||
|
component: 'Textarea',
|
||
|
componentProps: {
|
||
|
placeholder: '请输入',
|
||
|
},
|
||
|
fieldName: 'remark',
|
||
|
formItemClass: 'items-baseline',
|
||
|
label: '备注',
|
||
|
},
|
||
|
];
|