import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
import { DictEnum } from '@vben/constants';
import { getPopupContainer } from '@vben/utils';
import { z } from '#/adapter/form';
import { getDictOptions } from '#/utils/dict';
import { renderDict } from '#/utils/render';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
fieldName: 'deptName',
label: '部门名称',
},
component: 'Select',
componentProps: {
getPopupContainer,
options: getDictOptions(DictEnum.SYS_NORMAL_DISABLE),
fieldName: 'status',
label: '部门状态',
];
export const columns: VxeGridProps['columns'] = [
field: 'deptName',
title: '部门名称',
treeNode: true,
width: 200,
field: 'deptCategory',
title: '类别编码',
field: 'orderNum',
title: '排序',
width: 180,
field: 'status',
title: '状态',
slots: {
default: ({ row }) => {
return renderDict(row.status, DictEnum.SYS_NORMAL_DISABLE);
field: 'createTime',
title: '创建时间',
field: 'action',
fixed: 'right',
slots: { default: 'action' },
title: '操作',
export const drawerSchema: FormSchemaGetter = () => [
dependencies: {
show: () => false,
triggerFields: [''],
fieldName: 'deptId',
component: 'TreeSelect',
show: (model) => model.parentId !== 0,
triggerFields: ['parentId'],
fieldName: 'parentId',
label: '上级部门',
rules: 'selectRequired',
rules: 'required',
component: 'InputNumber',
fieldName: 'orderNum',
label: '显示排序',
fieldName: 'deptCategory',
label: '类别编码',
// 选中了就只能修改 不能重置为无负责人
allowClear: false,
fieldName: 'leader',
label: '负责人',
fieldName: 'phone',
label: '联系电话',
rules: z
.string()
.regex(/^1[3,4578]\d{9}$/, { message: '请输入正确的手机号' })
.optional()
.or(z.literal('')),
fieldName: 'email',
label: '邮箱',
.email({ message: '请输入正确的邮箱' })
component: 'RadioGroup',
buttonStyle: 'solid',
optionType: 'button',
defaultValue: '0',
label: '状态',