Commit ea5696f7775ee3686cef44eb51c2cd6df81ec353

Authored by Neeraj Sharma
1 parent c0b01ae20e

solve bugs in progressCardReport

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/pages/Report/progressCardReport.vue
... ... @@ -105,13 +105,13 @@
105 105 style="border: 1px solid lightgrey;margin-bottom:14px;padding:20px"
106 106 >
107 107 <!-- {{ value[index] }} -->
108   - <v-layout>
  108 + <v-layout v-if="value[0] === 0">
109 109 <v-flex xs12 style="border-bottom: 1px solid #707478;padding-bottom:6px !important">
110 110 <img :src="userData.schoolLogoUrl" v-if="userData.schoolLogoUrl" width="100" />
111 111 <img src="/static/icon/user.png" v-else-if="!userData.schoolLogoUrl" width="100" />
112 112 </v-flex>
113 113 </v-layout>
114   - <v-layout style="padding-top:10px">
  114 + <v-layout style="padding-top:10px" v-if="value[0] === 0">
115 115 <v-flex xs5>
116 116 <p style="margin:0px;margin-bottom:4px">
117 117 <span style="font-size:20px">{{ userData.name }}</span>
... ...