| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { BasicColumn } from '/@/components/Table';
- export const columns:BasicColumn[]=[
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '当前环节',
- dataIndex: 'name',
- key: 'name',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '审批人',
- dataIndex: 'username',
- key: 'username',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '审批结果',
- dataIndex: 'deleteReason',
- key: 'deleteReason',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '',
- dataIndex: 'comment',
- key: 'comment',
- align: 'center',
- ellipsis: true,
- },
-
- {
- title: '审批开始时间',
- dataIndex: 'startTime',
- key: 'startTime',
- align: 'center',
- ellipsis: true,
- width:180,
- },
- {
- title: '审批结束时间',
- dataIndex: 'endTime',
- key: 'endTime',
- align: 'center',
- ellipsis: true,
- width:180
- },
- ]
|