2024-09-13 15:27:29 +08:00
|
|
|
import { DictEnum } from '@vben/constants';
|
|
|
|
import { getPopupContainer } from '@vben/utils';
|
|
|
|
|
2024-10-05 16:02:02 +08:00
|
|
|
import { type FormSchemaGetter, type VxeGridProps } from '#/adapter';
|
2024-09-13 15:27:29 +08:00
|
|
|
import { getDictOptions } from '#/utils/dict';
|
2024-10-05 16:02:02 +08:00
|
|
|
import { renderDict } from '#/utils/render';
|
2024-09-13 15:27:29 +08:00
|
|
|
|
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-10-05 16:02:02 +08:00
|
|
|
export const columns: VxeGridProps['columns'] = [
|
|
|
|
{ type: 'checkbox', width: 60 },
|
|
|
|
{
|
|
|
|
title: '岗位编码',
|
|
|
|
field: 'postCode',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '类别编码',
|
|
|
|
field: 'postCategory',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '岗位名称',
|
|
|
|
field: 'postName',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '排序',
|
|
|
|
field: 'postSort',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '状态',
|
|
|
|
field: 'status',
|
|
|
|
slots: {
|
|
|
|
default: ({ row }) => {
|
|
|
|
return renderDict(row.status, DictEnum.SYS_NORMAL_DISABLE);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '创建时间',
|
|
|
|
field: 'createTime',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
field: 'action',
|
|
|
|
fixed: 'right',
|
|
|
|
slots: { default: 'action' },
|
|
|
|
title: '操作',
|
|
|
|
width: 180,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2024-09-13 15:27:29 +08:00
|
|
|
export const drawerSchema: FormSchemaGetter = () => [
|
|
|
|
{
|
|
|
|
component: 'Input',
|
|
|
|
dependencies: {
|
|
|
|
show: () => false,
|
|
|
|
triggerFields: [''],
|
|
|
|
},
|
2024-10-05 22:20:00 +08:00
|
|
|
fieldName: 'postId',
|
|
|
|
label: 'postId',
|
2024-09-13 15:27:29 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
component: 'TreeSelect',
|
|
|
|
componentProps: {
|
|
|
|
class: 'w-full',
|
|
|
|
getPopupContainer,
|
|
|
|
},
|
|
|
|
fieldName: 'deptId',
|
|
|
|
label: '所属部门',
|
2024-09-20 14:48:17 +08:00
|
|
|
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: '备注',
|
|
|
|
},
|
|
|
|
];
|