import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { LogBackup } from '../../../entity/system-log/log-backup' /** * 备份类型map */ const BACKUP_TYPE_MAP = ['完整备份', '增量备份', '数据结构备份', '导入备份'] const columns = ref[]>([ { title: '备份文件名称', dataIndex: 'backupName' }, { title: '文件大小', dataIndex: 'fileSizeStr' }, { title: '备份类型', dataIndex: 'backupType', customRender: ({ text }) => BACKUP_TYPE_MAP[text] }, { title: '备份人', dataIndex: 'createUserName' }, { title: '备份时间', dataIndex: 'gmtCreate' }, { title: '还原执行次数', dataIndex: 'executeCount' } ]) export default columns