perf: vxe

This commit is contained in:
xingyu4j
2022-11-12 17:08:23 +08:00
parent b1caa1a17b
commit 16b3e910e4
3 changed files with 23 additions and 65 deletions

View File

@ -21,16 +21,12 @@ const crudSchemas = reactive<VxeCrudSchema>({
{
title: '岗位名称',
field: 'name',
search: {
show: true
}
isSearch: true
},
{
title: '岗位编码',
field: 'code',
search: {
show: true
}
isSearch: true
},
{
title: '岗位顺序',
@ -40,24 +36,18 @@ const crudSchemas = reactive<VxeCrudSchema>({
title: t('common.status'),
field: 'status',
dictType: DICT_TYPE.COMMON_STATUS,
search: {
show: true
}
isSearch: true
},
{
title: '备注',
field: 'remark',
table: {
show: false
}
isTable: false
},
{
title: t('common.createTime'),
field: 'createTime',
formatter: 'formatDate',
form: {
show: false
}
isForm: false
}
]
})