import { ref } from "vue"; export const tableColumns = ref([ { name: 'num', label: '序号', width: 80, // 序号通常不需要太宽 fixed: '', align: 'center', minWidth: '', custom: false, }, { name: 'school', label: '学校', width: 200, // 学校名称较长,建议增加宽度 fixed: '', align: 'center', minWidth: '', custom: false, }, { name: 'account', label: '账户', width: 120, fixed: '', align: 'center', minWidth: '', custom: false, }, { name: 'name', label: '姓名', width: 100, fixed: '', align: 'center', minWidth: '', custom: false, }, { name: 'operationDetail', label: '操作详情', width: 150, fixed: '', align: 'center', minWidth: '', custom: false, }, { name: 'operationTime', label: '操作时间', width: 180, // 时间格式较长,需要足够宽度 fixed: '', align: 'center', minWidth: '', custom: false, } ])