12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- import { reactive } from 'vue'
- import { useI18n } from '@/hooks/web/useI18n'
- import { required } from '@/utils/formRules'
- import { DICT_TYPE } from '@/utils/dict'
- import { VxeCrudSchema, useVxeCrudSchemas } from '@/hooks/web/useVxeCrudSchemas'
- const { t } = useI18n() // 国际化
- // 表单校验
- export const rules = reactive({
- name: [required],
- code: [required],
- sort: [required]
- })
- // CrudSchema
- const crudSchemas = reactive<VxeCrudSchema[]>([
- {
- title: t('common.index'),
- field: 'id',
- type: 'seq',
- form: {
- show: false
- },
- detail: {
- show: false
- }
- },
- {
- title: '岗位名称',
- field: 'name',
- search: {
- show: true
- }
- },
- {
- title: '岗位编码',
- field: 'code',
- search: {
- show: true
- }
- },
- {
- title: '岗位顺序',
- field: 'sort'
- },
- {
- title: t('common.status'),
- field: 'status',
- dictType: DICT_TYPE.COMMON_STATUS,
- table: {
- slots: {
- default: 'status_default'
- }
- },
- search: {
- show: true
- }
- },
- {
- title: '备注',
- field: 'remark',
- table: {
- show: false
- }
- },
- {
- title: t('common.createTime'),
- field: 'createTime',
- formatter: 'formatDate',
- form: {
- show: false
- }
- },
- {
- title: t('table.action'),
- field: 'action',
- table: {
- width: '240px',
- slots: {
- default: 'action_default'
- }
- },
- form: {
- show: false
- },
- detail: {
- show: false
- }
- }
- ])
- export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|