|
@@ -34,7 +34,9 @@
|
|
<a class="weui-cell" v-for="(person,index) in list">
|
|
<a class="weui-cell" v-for="(person,index) in list">
|
|
<div class="weui-cell__hd" style="width:60px;">
|
|
<div class="weui-cell__hd" style="width:60px;">
|
|
<div style="border-radius:50%;width:48px;height:48px;overflow:hidden;">
|
|
<div style="border-radius:50%;width:48px;height:48px;overflow:hidden;">
|
|
- <img :src="'data:image/png;base64,' + person.ImageList[0].Data" style="object-fit:cover;" width="48" height="48"/>
|
|
|
|
|
|
+ <template v-if="person.ImageList.length>0">
|
|
|
|
+ <img :src="'data:image/png;base64,' + person.ImageList[0].Data" style="object-fit:cover;" width="48" height="48"/>
|
|
|
|
+ </template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="weui-cell__bd">
|
|
<div class="weui-cell__bd">
|