import { ref } from "vue" // 行政班表列配置 export const administrativeClassTableColumns = ref([ { name: 'className', label: '班级', width: '140', custom: true, fixed:'left', hidden: false, align:'center', }, ]); // 教学班表列配置 export const teachingClassTableColumns = ref([]) // 教师账号信息列表配置 export const teacherTableColumns = ref([ { name: 'userAccount', label: '账号', width: '80', custom: false, align:'center', }, { name: 'teacherName', label: '教师', width: '80', custom: false, align:'center', }, ])