2023-01-18 14:23:45 +08:00
|
|
|
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
2022-07-18 19:06:37 +08:00
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
|
|
// 表单校验
|
|
|
|
export const rules = reactive({
|
|
|
|
title: [required],
|
|
|
|
type: [required],
|
|
|
|
status: [required]
|
|
|
|
})
|
|
|
|
|
|
|
|
// CrudSchema
|
2022-11-23 13:59:13 +08:00
|
|
|
const crudSchemas = reactive<VxeCrudSchema>({
|
|
|
|
primaryKey: 'id',
|
|
|
|
primaryType: 'seq',
|
|
|
|
action: true,
|
|
|
|
actionWidth: '400px',
|
|
|
|
columns: [
|
|
|
|
{
|
|
|
|
title: '表名称',
|
|
|
|
field: 'tableName',
|
|
|
|
isSearch: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '表描述',
|
|
|
|
field: 'tableComment',
|
|
|
|
isSearch: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: '实体',
|
|
|
|
field: 'className',
|
|
|
|
isSearch: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('common.createTime'),
|
|
|
|
field: 'createTime',
|
|
|
|
formatter: 'formatDate',
|
|
|
|
isForm: false,
|
|
|
|
search: {
|
|
|
|
show: true,
|
|
|
|
itemRender: {
|
|
|
|
name: 'XDataTimePicker'
|
|
|
|
}
|
2022-08-02 10:19:02 +08:00
|
|
|
}
|
2022-11-23 13:59:13 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: t('common.updateTime'),
|
|
|
|
field: 'updateTime',
|
|
|
|
formatter: 'formatDate',
|
|
|
|
isForm: false
|
2022-07-18 19:06:37 +08:00
|
|
|
}
|
2022-11-23 13:59:13 +08:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|