74 lines
1.6 KiB
TypeScript
74 lines
1.6 KiB
TypeScript
![]() |
import type { VxeGridProps } from '#/adapter/vxe-table';
|
||
|
|
||
|
import { $t } from '@vben/locales';
|
||
|
|
||
|
import { type VbenFormSchema } from '#/adapter/form';
|
||
|
|
||
|
export const formSchema: VbenFormSchema[] = [
|
||
|
{
|
||
|
component: 'Input',
|
||
|
fieldName: 'name',
|
||
|
label: '菜单名称',
|
||
|
},
|
||
|
{
|
||
|
component: 'Input',
|
||
|
fieldName: 'code',
|
||
|
label: '岗位编码',
|
||
|
},
|
||
|
// TODO: dict
|
||
|
{
|
||
|
component: 'Select',
|
||
|
componentProps: {
|
||
|
allowClear: true,
|
||
|
options: [
|
||
|
{
|
||
|
label: 'Color1',
|
||
|
value: '1',
|
||
|
},
|
||
|
{
|
||
|
label: 'Color2',
|
||
|
value: '2',
|
||
|
},
|
||
|
],
|
||
|
placeholder: '请选择',
|
||
|
},
|
||
|
fieldName: 'status',
|
||
|
label: '状态',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const columns: VxeGridProps['columns'] = [
|
||
|
// { title: '序号', type: 'seq', width: 50 },
|
||
|
// { field: 'id', title: '岗位编号' },
|
||
|
{ field: 'name', title: '菜单名称', minWidth: 200, treeNode: true },
|
||
|
{ field: 'icon', title: '图标' },
|
||
|
{ field: 'permission', title: '权限标识' },
|
||
|
{ field: 'component', title: '组件路径' },
|
||
|
{ field: 'componentName', title: '组件名称' },
|
||
|
{
|
||
|
field: 'status',
|
||
|
title: '状态',
|
||
|
cellRender: { name: 'CellDict', props: { type: 'common_status' } },
|
||
|
},
|
||
|
{ field: 'createTime', formatter: 'formatDateTime', title: '创建时间' },
|
||
|
{
|
||
|
field: 'action',
|
||
|
fixed: 'right',
|
||
|
slots: { default: 'action' },
|
||
|
title: $t('page.action.action'),
|
||
|
width: 160,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const modalSchema: VbenFormSchema[] = [
|
||
|
{
|
||
|
component: 'Input',
|
||
|
fieldName: 'id',
|
||
|
label: 'id',
|
||
|
dependencies: {
|
||
|
triggerFields: [''],
|
||
|
show: () => false,
|
||
|
},
|
||
|
},
|
||
|
];
|