| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import { BasicColumn } from '/@/components/Table';
- export const columns: BasicColumn[] = [
- {
- title: '文件ID',
- dataIndex: 'id',
- ifShow: false,
- align:'center',
- },
- {
- title: '父文件夹ID',
- dataIndex: 'parentId',
- ifShow: false,
- align:'center',
- },
- {
- title: '文件名称',
- dataIndex: 'fileName',
- align:'center',
- width:220,
- },
- {
- title: '文件格式',
- dataIndex: 'fileSuffix',
- align:'center',
- width:80,
- },
- {
- title: '文件类型',
- dataIndex: 'fileType_dictText',
- width:110,
- align:'center',
- },
- {
- title: '文件来源',
- dataIndex: 'fileSource',
- width:140,
- align:'center',
- },
- // {
- // title: '是否需要审批',
- // dataIndex: 'isApprove',
- // width: 120,
- // },
- {
- title: '上传时间',
- dataIndex: 'createTime',
- width:140,
- align:'center',
- },
- {
- title: '审批状态',
- dataIndex: 'bpmStatus_dictText',
- width:90,
- align:'center',
- },
- {
- title: '创建人',
- dataIndex: 'createBy',
- width:90,
- align:'center',
- },
- {
- title: '审批操作',
- dataIndex: 'actionSp',
- width: 150,
- align: 'center',
- slots: { customRender: 'actionSp' },
- },
- {
- title: '文件操作',
- dataIndex: 'actionWj',
- width: 150,
- align: 'center',
- slots: { customRender: 'actionWj' },
- },
-
- ];
|