ShiShiYiBan/yudao-ui-admin-vue3/src/views/system/notice/notice.data.ts

62 lines
1.4 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-13 13:16:11 +08:00
dictType: DICT_TYPE.SYSTEM_NOTICE_TYPE
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,
isSearch: true
},
{
title: '公告内容', // TODO 星语:详情时,公告展示有办法是 html 么?
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)