import { BasicColumn } from '/@/components/Table'; export const columns: BasicColumn[] = [ { title: '文件ID', dataIndex: 'id', ifShow: false, }, { title: '父文件夹ID', dataIndex: 'parentId', ifShow: false, }, { title: '文件名称', dataIndex: 'fileName', // width: 260, }, { title: '文件类型', dataIndex: 'fileType_dictText', }, { title: '文件来源', dataIndex: 'fileSource', }, // { // title: '是否需要审批', // dataIndex: 'isApprove', // width: 120, // }, { title: '审批状态', dataIndex: 'bpmStatus_dictText', }, { title: '当前审批人', dataIndex: 'createBy', width: 120, }, { title: '上传时间', dataIndex: 'createTime', }, ];