| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import { BasicColumn } from '/@/components/Table';
- export const columns:BasicColumn[]=[
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '流程实例ID',
- dataIndex: 'id',
- key: 'id',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '流程名称',
- dataIndex: 'name',
- key: 'name',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '申请人',
- dataIndex: 'applyer',
- key: 'applyer',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '标识Key',
- dataIndex: 'key',
- key: 'key',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '版本',
- dataIndex: 'versionC',
- key: 'versionC',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '当前环节',
- dataIndex: 'currTaskName',
- key: 'currTaskName',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '状态',
- dataIndex: 'isSuspended',
- key: 'isSuspended',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '操作',
- key: 'action',
- width: 350,
- slots: { customRender: 'action' },
- align: 'center',
- },
- ]
|