64 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-07-18 19:06:37 +08:00
import { reactive } from 'vue'
import { useI18n } from '@/hooks/web/useI18n'
import { required } from '@/utils/formRules'
import { DICT_TYPE } from '@/utils/dict'
2022-11-12 23:33:29 +08:00
import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas'
2022-07-18 19:06:37 +08:00
const { t } = useI18n() // 国际化
// 表单校验
export const rules = reactive({
title: [required],
type: [required]
2022-07-18 19:06:37 +08:00
})
// CrudSchema
2022-11-12 23:33:29 +08:00
const crudSchemas = reactive<VxeCrudSchema>({
primaryKey: 'id',
primaryType: 'seq',
action: true,
columns: [
{
title: '公告标题',
field: 'title',
isSearch: true
2022-07-18 19:06:37 +08:00
},
2022-11-12 23:33:29 +08:00
{
title: '公告类型',
field: 'type',
2022-11-16 23:15:14 +08:00
dictType: DICT_TYPE.SYSTEM_NOTICE_TYPE,
2022-11-17 23:09:29 +08:00
dictClass: 'number'
2022-07-18 19:06:37 +08:00
},
2022-11-12 23:33:29 +08:00
{
title: t('common.status'),
field: 'status',
dictType: DICT_TYPE.COMMON_STATUS,
2022-11-17 23:09:29 +08:00
dictClass: 'number',
2022-11-12 23:33:29 +08:00
isSearch: true
},
{
2022-11-16 11:32:47 +08:00
title: '公告内容',
2022-11-12 23:33:29 +08:00
field: 'content',
2022-11-15 13:59:22 +08:00
table: {
type: 'html'
},
2022-11-12 23:33:29 +08:00
form: {
component: 'Editor',
colProps: {
span: 24
},
componentProps: {
valueHtml: ''
}
},
isTable: false
2022-07-18 19:06:37 +08:00
},
2022-11-12 23:33:29 +08:00
{
title: t('common.createTime'),
field: 'createTime',
formatter: 'formatDate',
isForm: false
2022-07-18 19:06:37 +08:00
}
2022-11-12 23:33:29 +08:00
]
})
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)