12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
- // CrudSchema
- const crudSchemas = reactive<VxeCrudSchema>({
- primaryKey: 'id',
- primaryType: null,
- action: true,
- columns: [
- {
- title: '定义编号',
- field: 'id',
- table: {
- width: 360
- }
- },
- {
- title: '定义名称',
- field: 'name',
- table: {
- // width: 120,
- slots: {
- default: 'name_default'
- }
- }
- },
- {
- title: '定义分类',
- field: 'category',
- // dictType: DICT_TYPE.BPM_MODEL_CATEGORY,
- // dictClass: 'number',
- table: {
- // width: 120,
- slots: {
- default: 'category_default'
- }
- }
- },
- {
- title: '表单信息',
- field: 'formId',
- table: {
- // width: 200,
- slots: {
- default: 'formId_default'
- }
- }
- },
- {
- title: '流程版本',
- field: 'version',
- table: {
- // width: 80,
- slots: {
- default: 'version_default'
- }
- }
- },
- {
- title: '激活状态',
- field: 'suspensionState',
- table: {
- // width: 80,
- slots: {
- default: 'suspensionState_default'
- }
- }
- },
- {
- title: '部署时间',
- field: 'deploymentTime',
- isForm: false,
- formatter: 'formatDate'
- // table: {
- // width: 180
- // }
- }
- ]
- })
- export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|