Commit aafc6733721c7841cf5f79002ba66d950460757d

Authored by Amber Dev
1 parent 3f2e2025ce

added gap in admit card

Showing 1 changed file with 15 additions and 7 deletions   Show diff stats
src/pages/Report/admitCard.vue
... ... @@ -113,9 +113,11 @@
113 113 </v-layout>
114 114 <div id="printMe" v-if="frontPart">
115 115 <v-card
116   - v-for="(student,index) in getScheduleList.studentData"
117   - :key="index"
118   - style="
  116 + v-for="(student,index) in getScheduleList.studentData"
  117 + :key="index"
  118 + class="mt-3"
  119 + style="
  120 + page-break-after: always;
119 121 background-color: #fff;
120 122 border: 1px solid #ddd;
121 123 color: rgba(0,0,0,0.87);
... ... @@ -125,8 +127,9 @@
125 127 webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2), 0px 0px 0px 0px rgba(0,0,0,0.14), 0px 0px 0px 0px rgba(0,0,0,0.12) !important;
126 128 box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2), 0px 0px 0px 0px rgba(0,0,0,0.14), 0px 0px 0px 0px rgba(0,0,0,0.12) !important;"
127 129 >
128   - <v-layout style="border-bottom: 1px solid #ddd;margin: 8px; auto">
129   - <v-flex xs7 sm3 style="margin-bottom:0px">
  130 +
  131 + <v-layout style="border-bottom: 1px solid #ddd;margin: 8px; auto" >
  132 + <v-flex xs3 style="margin-bottom:0px">
130 133 <img
131 134 :src="userData.schoolLogoUrl"
132 135 style="widht:80px;height:80px;"
... ... @@ -154,7 +157,12 @@
154 157 </div>
155 158 </v-flex>
156 159 <v-flex xs4 style="text-align:center;margin-bottom:0px">
157   - <img src="/static/icon/user.png" v-if="!student.profilePicUrl" width="80" />
  160 +
  161 + <img
  162 + src="/static/icon/user.png"
  163 + v-if="!student.profilePicUrl"
  164 + width="80"
  165 + />
158 166 <img
159 167 :src="student.profilePicUrl"
160 168 onerror="this.src='/static/icon/user.png';"
... ... @@ -553,7 +561,7 @@ export default {
553 561 .then((response) => {
554 562 this.showTable = true;
555 563 this.getScheduleList = response.data.data;
556   - console.log(" getScheduleList - ", this.getScheduleList);
  564 + console.log(" getScheduleList - ",this.getScheduleList)
557 565 // this.schoolData = response.data.data.studentData.schoolId;
558 566 if (response.data.data.scheduleData.length === 0) {
559 567 this.showLoader = false;
... ...