You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

185 lines
3.5 KiB

import type { BasicColumn, FormSchema } from '@/components/Table'
import { useRender } from '@/components/Table'
2 years ago
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
2 years ago
import { SystemDataScopeEnum } from '@/enums/systemEnum'
export const columns: BasicColumn[] = [
{
title: '角色编号',
dataIndex: 'id',
width: 120,
2 years ago
},
{
title: '角色名称',
dataIndex: 'name',
width: 150,
2 years ago
},
{
title: '角色标识',
dataIndex: 'code',
width: 150,
2 years ago
},
{
title: '角色类型',
dataIndex: 'type',
width: 150,
customRender: ({ text }) => {
return useRender.renderDict(text, DICT_TYPE.SYSTEM_ROLE_TYPE)
},
2 years ago
},
{
title: '显示顺序',
dataIndex: 'sort',
width: 120,
2 years ago
},
{
title: '状态',
dataIndex: 'status',
width: 180,
customRender: ({ text }) => {
return useRender.renderDict(text, DICT_TYPE.COMMON_STATUS)
},
2 years ago
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
customRender: ({ text }) => {
return useRender.renderDate(text)
},
},
2 years ago
]
export const searchFormSchema: FormSchema[] = [
{
label: '角色名称',
field: 'name',
component: 'Input',
colProps: { span: 8 },
2 years ago
},
{
label: '角色标识',
field: 'code',
component: 'Input',
colProps: { span: 8 },
2 years ago
},
{
label: '状态',
field: 'status',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.COMMON_STATUS),
2 years ago
},
colProps: { span: 8 },
2 years ago
},
{
label: '创建时间',
field: 'createTime',
component: 'RangePicker',
colProps: { span: 8 },
},
2 years ago
]
export const formSchema: FormSchema[] = [
{
label: '编号',
field: 'id',
show: false,
component: 'Input',
2 years ago
},
{
label: '角色名称',
field: 'name',
required: true,
component: 'Input',
2 years ago
},
{
label: '角色标识',
field: 'code',
required: true,
component: 'Input',
2 years ago
},
{
label: '角色顺序',
field: 'sort',
required: true,
defaultValue: 0,
component: 'InputNumber',
2 years ago
},
{
label: '状态',
field: 'status',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.COMMON_STATUS),
},
2 years ago
},
{
label: '备注',
field: 'remark',
component: 'InputTextArea',
},
2 years ago
]
export const menuScopeFormSchema: FormSchema[] = [
2 years ago
{
2 years ago
label: '角色编号',
2 years ago
field: 'id',
2 years ago
show: false,
component: 'Input',
2 years ago
},
{
label: '角色名称',
field: 'name',
dynamicDisabled: true,
component: 'Input',
2 years ago
},
{
label: '角色标识',
field: 'code',
dynamicDisabled: true,
component: 'Input',
2 years ago
},
{
label: '菜单权限',
field: 'menuIds',
slot: 'menuIds',
},
2 years ago
]
export const dataScopeFormSchema: FormSchema[] = [
{
2 years ago
label: '角色编号',
field: 'roleId',
show: false,
component: 'Input',
},
{
label: '角色名称',
field: 'name',
dynamicDisabled: true,
component: 'Input',
},
{
label: '角色标识',
field: 'code',
dynamicDisabled: true,
component: 'Input',
},
{
label: '权限范围',
field: 'dataScope',
required: true,
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.SYSTEM_DATA_SCOPE),
},
},
{
label: '数据权限',
field: 'dataScopeDeptIds',
ifShow: ({ values }) => values.dataScope === SystemDataScopeEnum.DEPT_CUSTOM,
slot: 'dataScopeDeptIds',
},
]