Commit c34b2bc04c0c91b642f1418e1dae8f658516991a
1 parent
5e2012ed2d
Exists in
master
and in
3 other branches
solved issues related to view marks and minor changes in other pages
Showing
4 changed files
with
21 additions
and
4 deletions
Show diff stats
src/pages/Account/viewInvoice.vue
... | ... | @@ -161,8 +161,17 @@ export default { |
161 | 161 | }, |
162 | 162 | feeTypeData: [], |
163 | 163 | token: "", |
164 | - invoiceParticularData: {}, | |
165 | - userData: {} | |
164 | + invoiceParticularData: { | |
165 | + studentId: { | |
166 | + name: "" | |
167 | + }, | |
168 | + classId: { | |
169 | + classNum: "" | |
170 | + }, | |
171 | + }, | |
172 | + userData: { | |
173 | + name: "" | |
174 | + }, | |
166 | 175 | }), |
167 | 176 | |
168 | 177 | methods: { | ... | ... |
src/pages/Attendence/viewStudentsAttendence.vue
... | ... | @@ -304,7 +304,14 @@ export default { |
304 | 304 | year: new Date().getFullYear(), |
305 | 305 | activeDates: [], |
306 | 306 | activeClass: "", |
307 | - studentData: {} | |
307 | + studentData: { | |
308 | + classId: { | |
309 | + classNum: "" | |
310 | + }, | |
311 | + sectionId: { | |
312 | + name: "" | |
313 | + }, | |
314 | + }, | |
308 | 315 | }; |
309 | 316 | }, |
310 | 317 | mounted() { | ... | ... |
src/pages/Mark/mark.vue
... | ... | @@ -536,7 +536,7 @@ export default { |
536 | 536 | for (var j = 0; j < response.data.data.length; j++) { |
537 | 537 | this.getStudentData[n].marksObtained.push({ |
538 | 538 | markDistributionId: response.data.data[j]._id, |
539 | - marksScored: "" | |
539 | + marksScored: 0 | |
540 | 540 | }); |
541 | 541 | } |
542 | 542 | // if (marks.marksScored > marks.marksObtained) { | ... | ... |
src/pages/Mark/viewMark.vue
... | ... | @@ -54,6 +54,7 @@ |
54 | 54 | > Roll No : {{ value[0].studentId.rollNo }}</p> |
55 | 55 | </v-flex> |
56 | 56 | </v-layout> |
57 | + <v-card-title class="subheading">{{value[0].examId.examName}}</v-card-title> | |
57 | 58 | <table |
58 | 59 | class="mb-5 tableRsponsive feeTypeTable" |
59 | 60 | style="border: 1px solid lightgrey; | ... | ... |