| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import { BasicColumn } from '/@/components/Table';
- export const columns:BasicColumn[]=[
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '文件名称',
- dataIndex: 'fileName',
- key: 'fileName',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '文件类型',
- dataIndex: 'fileSuffix',
- key: 'fileSuffix',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '文件来源',
- dataIndex: 'fileType_dictText',
- key: 'fileType_dictText',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '上传时间',
- dataIndex: 'createTime',
- key: 'createTime',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '审批状态',
- dataIndex: 'bpmStatus_dictText',
- key: 'bpmStatus_dictText',
- align: 'center',
- ellipsis: true,
- },
- {
- title: '当前审批人',
- dataIndex: 'createBy',
- key: 'createBy',
- align: 'center',
- ellipsis: true,
- },
- // {
- // title: '操作',
- // key: 'action',
- // width: 200,
- // slots: { customRender: 'action' },
- // align: 'center',
- // },
- ]
|