| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import { BasicColumn } from '/@/components/Table';
- export const columns:BasicColumn[]=[
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '流程名称',
- dataIndex: 'areaName',
- key: 'areaName',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '申请人',
- dataIndex: 'warnLevel_dictText',
- key: 'warnLevel_dictText',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '标识Key',
- dataIndex: 'zhType',
- key: 'zhType',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '版本',
- dataIndex: 'isLk',
- key: 'isLk',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '审批结果',
- dataIndex: 'remarks',
- key: 'remarks',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '原因详情',
- dataIndex: 'suggestMsg',
- key: 'suggestMsg',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '总耗时',
- dataIndex: 'suggestMsg',
- key: 'suggestMsg',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '开始时间',
- dataIndex: 'suggestMsg',
- key: 'suggestMsg',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '结束时间',
- dataIndex: 'suggestMsg',
- key: 'suggestMsg',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '操作',
- key: 'action',
- width: 250,
- slots: { customRender: 'action' },
- align: 'center',
- },
- ]
|