perf: 完善类型

This commit is contained in:
xingyu
2022-11-29 22:26:50 +08:00
parent 7e41b763f6
commit 4e860eb254
30 changed files with 217 additions and 91 deletions

View File

@ -55,7 +55,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
},
{
title: '邮箱',
field: 'email'
field: 'email',
isTable: false
},
{
title: '显示排序',
@ -67,6 +68,12 @@ const crudSchemas = reactive<VxeCrudSchema>({
dictType: DICT_TYPE.COMMON_STATUS,
dictClass: 'number',
isSearch: true
},
{
title: t('common.createTime'),
field: 'createTime',
formatter: 'formatDate',
isForm: false
}
]
})