Commit c1975052aa11e4941e32b2f817a13f0167627810
1 parent
558365e7b3
Exists in
master
and in
3 other branches
show data in table
Showing
1 changed file
with
11 additions
and
8 deletions
Show diff stats
src/pages/Exam/examSchedule.vue
... | ... | @@ -369,7 +369,6 @@ |
369 | 369 | <td class="td td-row">{{ props.index + 1}}</td> |
370 | 370 | <td class="td td-row text-xs-center">{{ props.item.examId.examName}}</td> |
371 | 371 | <td class="td td-row text-xs-center">{{ props.item.classId.classNum}}</td> |
372 | - <td class="td td-row text-xs-center">{{ props.item.sectionId.name }}</td> | |
373 | 372 | <td class="td td-row text-xs-center">{{ props.item.subjectName }}</td> |
374 | 373 | <td class="td td-row text-xs-center">{{ dates(props.item.date) }}</td> |
375 | 374 | <td class="td td-row text-xs-center">{{ props.item.timeFrom }} - {{ props.item.timeTo }}</td> |
... | ... | @@ -710,12 +709,12 @@ export default { |
710 | 709 | sortable: false, |
711 | 710 | align: "center" |
712 | 711 | }, |
713 | - { | |
714 | - text: "Section", | |
715 | - value: "sectionId.name", | |
716 | - sortable: false, | |
717 | - align: "center" | |
718 | - }, | |
712 | + // { | |
713 | + // text: "Section", | |
714 | + // value: "sectionId.name", | |
715 | + // sortable: false, | |
716 | + // align: "center" | |
717 | + // }, | |
719 | 718 | { |
720 | 719 | text: "Subject Name", |
721 | 720 | value: "subjectName", |
... | ... | @@ -746,7 +745,11 @@ export default { |
746 | 745 | examList: [], |
747 | 746 | subjects: [], |
748 | 747 | addSchedule: {}, |
749 | - editedItem: {}, | |
748 | + editedItem: { | |
749 | + sectionId: { | |
750 | + name: "" | |
751 | + } | |
752 | + }, | |
750 | 753 | getScheduleData: {}, |
751 | 754 | ScheduleData: [], |
752 | 755 | token: "" | ... | ... |