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.

187 lines
3.4 KiB

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