| 123456789101112131415161718192021222324252627282930313233343536 |
- 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',
- },
- ])
|