| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import { BasicColumn } from '/@/components/Table';
- export const columns:BasicColumn[]=[
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '当前环节',
- 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: 'isSuspended',
- key: 'isSuspended',
- align: 'center',
- ellipsis: true,
- },
- // {
- // title: '操作',
- // key: 'action',
- // width: 350,
- // slots: { customRender: 'action' },
- // align: 'center',
- // },
- ]
|