import { DictEnum } from '@vben/constants'; import { getPopupContainer } from '@vben/utils'; import { type FormSchemaGetter } from '#/adapter'; import { getDictOptions } from '#/utils/dict'; 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: '状态', }, ]; 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', }, { 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', fieldName: 'status', label: '岗位状态', rules: 'required', }, { component: 'Textarea', fieldName: 'remark', formItemClass: 'items-baseline', label: '备注', }, ];