mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-19 23:02:00 +08:00
95 lines
1.8 KiB
TypeScript
95 lines
1.8 KiB
TypeScript
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
// CrudSchema
|
|
const crudSchemas = reactive<VxeCrudSchema>({
|
|
primaryKey: 'id',
|
|
primaryType: null,
|
|
primaryTitle: '编号',
|
|
action: true,
|
|
actionWidth: '200px',
|
|
columns: [
|
|
{
|
|
title: '编号',
|
|
field: 'id',
|
|
table: {
|
|
width: 320
|
|
}
|
|
},
|
|
{
|
|
title: '流程名',
|
|
field: 'name',
|
|
isSearch: true
|
|
},
|
|
{
|
|
title: '所属流程',
|
|
field: 'processDefinitionId',
|
|
isSearch: true,
|
|
isTable: false
|
|
},
|
|
{
|
|
title: '流程分类',
|
|
field: 'category',
|
|
dictType: DICT_TYPE.BPM_MODEL_CATEGORY,
|
|
dictClass: 'number',
|
|
isSearch: true,
|
|
table: {
|
|
slots: {
|
|
default: 'category_default'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
title: '当前审批任务',
|
|
field: 'tasks',
|
|
table: {
|
|
width: 140,
|
|
slots: {
|
|
default: 'tasks_default'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
title: t('common.status'),
|
|
field: 'status',
|
|
dictType: DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS,
|
|
dictClass: 'number',
|
|
isSearch: true
|
|
},
|
|
{
|
|
title: '结果',
|
|
field: 'result',
|
|
dictType: DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT,
|
|
dictClass: 'number',
|
|
isSearch: true
|
|
},
|
|
{
|
|
title: '提交时间',
|
|
field: 'createTime',
|
|
formatter: 'formatDate',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isForm: false,
|
|
isSearch: true,
|
|
search: {
|
|
show: true,
|
|
itemRender: {
|
|
name: 'XDataTimePicker'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
title: '结束时间',
|
|
field: 'endTime',
|
|
formatter: 'formatDate',
|
|
table: {
|
|
width: 180
|
|
},
|
|
isForm: false
|
|
}
|
|
]
|
|
})
|
|
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|