mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2025-02-17 09:40:34 +08:00
fix: vue3 role schema
This commit is contained in:
parent
f59a6883f8
commit
99c21e52c8
@ -28,7 +28,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
|
|||||||
title: '角色类型',
|
title: '角色类型',
|
||||||
field: 'type',
|
field: 'type',
|
||||||
dictType: DICT_TYPE.SYSTEM_ROLE_TYPE,
|
dictType: DICT_TYPE.SYSTEM_ROLE_TYPE,
|
||||||
dictClass: 'number'
|
dictClass: 'number',
|
||||||
|
isForm: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '角色标识',
|
title: '角色标识',
|
||||||
@ -39,6 +40,21 @@ const crudSchemas = reactive<VxeCrudSchema>({
|
|||||||
title: '显示顺序',
|
title: '显示顺序',
|
||||||
field: 'sort'
|
field: 'sort'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: t('form.remark'),
|
||||||
|
field: 'remark',
|
||||||
|
isTable: false,
|
||||||
|
form: {
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
type: 'textarea',
|
||||||
|
rows: 4
|
||||||
|
},
|
||||||
|
colProps: {
|
||||||
|
span: 24
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: t('common.status'),
|
title: t('common.status'),
|
||||||
field: 'status',
|
field: 'status',
|
||||||
|
Loading…
Reference in New Issue
Block a user