53 lines
1.0 KiB
TypeScript
53 lines
1.0 KiB
TypeScript
|
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
||
|
const { t } = useI18n() // 国际化
|
||
|
|
||
|
// 表单校验
|
||
|
export const rules = reactive({
|
||
|
name: [required],
|
||
|
code: [required],
|
||
|
sort: [required]
|
||
|
})
|
||
|
|
||
|
// CrudSchema
|
||
|
const crudSchemas = reactive<VxeCrudSchema>({
|
||
|
primaryKey: 'id',
|
||
|
primaryType: 'seq',
|
||
|
primaryTitle: '岗位编号',
|
||
|
action: true,
|
||
|
columns: [
|
||
|
{
|
||
|
title: '岗位名称',
|
||
|
field: 'name',
|
||
|
isSearch: true
|
||
|
},
|
||
|
{
|
||
|
title: '岗位编码',
|
||
|
field: 'code',
|
||
|
isSearch: true
|
||
|
},
|
||
|
{
|
||
|
title: '岗位顺序',
|
||
|
field: 'sort'
|
||
|
},
|
||
|
{
|
||
|
title: t('common.status'),
|
||
|
field: 'status',
|
||
|
dictType: DICT_TYPE.COMMON_STATUS,
|
||
|
dictClass: 'number',
|
||
|
isSearch: true
|
||
|
},
|
||
|
{
|
||
|
title: '备注',
|
||
|
field: 'remark',
|
||
|
isTable: false
|
||
|
},
|
||
|
{
|
||
|
title: t('common.createTime'),
|
||
|
field: 'createTime',
|
||
|
formatter: 'formatDate',
|
||
|
isForm: false
|
||
|
}
|
||
|
]
|
||
|
})
|
||
|
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|