Commit 05746bfaec6c7a5585cbc98fa3383b85445d1fcd
1 parent
240f5da2c8
Exists in
master
and in
3 other branches
test progress card
Showing
1 changed file
with
5 additions
and
4 deletions
Show diff stats
src/pages/Report/progressCardReport.vue
... | ... | @@ -199,21 +199,22 @@ |
199 | 199 | </v-flex> |
200 | 200 | <v-flex xs2 sm2 md2 lg2> |
201 | 201 | <div v-for="(studentMark,i,index) in value" :key="index"> |
202 | - <v-avatar | |
203 | - size="100" | |
204 | - style="margin-top:16px" | |
202 | + <div | |
203 | + style="padding-top:16px" | |
205 | 204 | v-if="index == 0" |
206 | 205 | class="hidden-sm-only hidden-xs-only" |
207 | 206 | > |
208 | 207 | <img |
209 | 208 | src="/static/icon/user.png" |
210 | 209 | v-if="!studentMark[0].studentId.profilePicUrl" |
210 | + style="width:60px;height:60px;" | |
211 | 211 | /> |
212 | 212 | <img |
213 | 213 | :src="studentMark[0].studentId.profilePicUrl" |
214 | 214 | v-else-if="studentMark[0].studentId.profilePicUrl" |
215 | + style="width:60px;height:60px;" | |
215 | 216 | /> |
216 | - </v-avatar> | |
217 | + </div> | |
217 | 218 | </div> |
218 | 219 | </v-flex> |
219 | 220 | </v-layout> | ... | ... |