| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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',
- },
- {
- title: '文件类型',
- dataIndex: 'fileType_dictText',
- width:110,
- align:'center',
- },
- {
- title: '文件来源',
- dataIndex: 'fileSource',
- width:160,
- align:'center',
- },
- // {
- // title: '是否需要审批',
- // dataIndex: 'isApprove',
- // width: 120,
- // },
- {
- title: '上传时间',
- dataIndex: 'createTime',
- width:180,
- align:'center',
- },
- {
- title: '审批状态',
- dataIndex: 'bpmStatus_dictText',
- width:110,
- align:'center',
- },
- {
- title: '当前审批人',
- dataIndex: 'createBy',
- width:110,
- align:'center',
- },
- {
- title: '审批操作',
- dataIndex: 'actionSp',
- width: 200,
- align: 'center',
- slots: { customRender: 'actionSp' },
- },
- {
- title: '文件操作',
- dataIndex: 'actionWj',
- width: 200,
- align: 'center',
- slots: { customRender: 'actionWj' },
- },
-
- ];
|