Commit 8627b28904c22278b320f8787dca97e79d768423
1 parent
1a34a28a17
Exists in
master
and in
3 other branches
set table fields and get data
Showing
3 changed files
with
8 additions
and
25 deletions
Show diff stats
src/pages/Exam/examSchedule.vue
... | ... | @@ -52,34 +52,16 @@ |
52 | 52 | <v-flex xs12 sm12> |
53 | 53 | <v-layout> |
54 | 54 | <v-flex xs4 class="pt-4 subheading"> |
55 | - <label class="right">Section:</label> | |
56 | - </v-flex> | |
57 | - <v-flex xs7 class="ml-3"> | |
58 | - <v-select | |
59 | - :items="addSection" | |
60 | - label="Select your section" | |
61 | - v-model="editedItem.sectionId" | |
62 | - item-text="name" | |
63 | - item-value="_id" | |
64 | - name="Select Section" | |
65 | - required | |
66 | - ></v-select> | |
67 | - </v-flex> | |
68 | - </v-layout> | |
69 | - </v-flex> | |
70 | - <v-flex xs12 sm12> | |
71 | - <v-layout> | |
72 | - <v-flex xs4 class="pt-4 subheading"> | |
73 | 55 | <label class="right">Subject Name:</label> |
74 | 56 | </v-flex> |
75 | 57 | <v-flex xs7 class="ml-3"> |
76 | 58 | <v-select |
77 | 59 | :items="subjects" |
78 | - label="Select your Subject Name" | |
60 | + label="Select your Subject" | |
79 | 61 | v-model="editedItem.subjectName" |
80 | 62 | item-text="subjectName" |
81 | 63 | item-value="subjectName" |
82 | - name="Select Section" | |
64 | + name="Select Subject" | |
83 | 65 | required |
84 | 66 | ></v-select> |
85 | 67 | </v-flex> |
... | ... | @@ -678,7 +660,6 @@ export default { |
678 | 660 | editExamScheduleDialog: false, |
679 | 661 | profileExamScheduleDialog: false, |
680 | 662 | valid: true, |
681 | - addSection: [], | |
682 | 663 | pagination: { |
683 | 664 | rowsPerPage: 10 |
684 | 665 | }, |
... | ... | @@ -742,6 +723,7 @@ export default { |
742 | 723 | { text: "Action", value: "", sortable: false, align: "center" } |
743 | 724 | ], |
744 | 725 | classList: [], |
726 | + addSection: [], | |
745 | 727 | examList: [], |
746 | 728 | subjects: [], |
747 | 729 | addSchedule: {}, | ... | ... |
src/pages/Mark/viewMark.vue
... | ... | @@ -92,9 +92,10 @@ |
92 | 92 | </thead> |
93 | 93 | <tbody style="border: 1px solid lightgrey !important;"> |
94 | 94 | <tr v-for="subject in value" style="border: 1px solid lightgrey !important;"> |
95 | - <td | |
95 | + <!-- <td | |
96 | 96 | style="border: 1px solid lightgrey !important;padding: 10px;" |
97 | - >{{subject.subjectName}}</td> | |
97 | + >{{subject.subjectName}}</td> --> | |
98 | + <td style="border: 1px solid lightgrey !important;padding: 10px;"></td> | |
98 | 99 | <template v-for="(exam, i) in subject.studentsMarks"> |
99 | 100 | <td |
100 | 101 | style="border: 1px solid lightgrey !important;padding: 10px;" | ... | ... |
src/pages/Report/progressCardReport.vue
... | ... | @@ -164,7 +164,7 @@ |
164 | 164 | </template> --> |
165 | 165 | <!-- <td>{{value[0].studentsMarks[1].markDistributionId.distributionType}}</td> --> |
166 | 166 | |
167 | - <td style="border: 1px solid lightgrey !important;padding: 10px;">Total</td> | |
167 | + <td style="border: 1px solid lightgrey !important;padding: 10px;">Total Marks</td> | |
168 | 168 | </tr> |
169 | 169 | <tr |
170 | 170 | v-for="(subject, ind) in value" |
... | ... | @@ -177,7 +177,7 @@ |
177 | 177 | style="border: 1px solid lightgrey !important;padding: 10px;" |
178 | 178 | >Highest Mark</td> |
179 | 179 | </template> |
180 | - <td style="border: 1px solid lightgrey !important;padding: 10px;">Mark</td> | |
180 | + <!-- <td style="border: 1px solid lightgrey !important;padding: 10px;">Mark</td> --> | |
181 | 181 | </tr> |
182 | 182 | </thead> |
183 | 183 | <tbody style="border: 1px solid lightgrey !important;"> | ... | ... |