| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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,
- width: 110,
- },
- {
- title: '文件来源',
- 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,
- width:110
- },
- {
- title: '当前审批人',
- dataIndex: 'suggestMsg',
- key: 'suggestMsg',
- align: 'center',
- ellipsis: true,
- width: 110,
- },
- {
- title: '操作',
- key: 'action',
- width: 400,
- slots: { customRender: 'action' },
- align: 'center',
- },
- ]
|