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:190, }, { title: '文件格式', dataIndex: 'fileSuffix', align:'center', width:70, }, { title: '文件类型', dataIndex: 'fileType_dictText', width:90, 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:70, align:'center', }, { title: '创建人', dataIndex: 'createBy', width:70, align:'center', }, { title: '审批操作', dataIndex: 'actionSp', width: 130, align: 'center', slots: { customRender: 'actionSp' }, }, { title: '文件操作', dataIndex: 'actionWj', width: 240, align: 'center', slots: { customRender: 'actionWj' }, }, ];