|
@@ -22,7 +22,10 @@
|
|
|
<ul :ref="reportScrollRef" @scroll="getScroll($event)">
|
|
|
<li v-for="(item, index) in reportList" :key="index" @click="openReport(item)">
|
|
|
<div class="left">
|
|
|
- <div class="pic"><img :src="item.face_pic || item.logo_url || item.student_icon_url" /></div>
|
|
|
+ <div class="pic">
|
|
|
+ <img v-if="item.face_pic || item.logo_url || item.student_icon_url" :src="item.face_pic || item.logo_url || item.student_icon_url" />
|
|
|
+ <img v-else src="@/assets/images/common/noImg.png" />
|
|
|
+ </div>
|
|
|
<div class="txt">
|
|
|
<div>
|
|
|
<div class="name">{{ item.student_name }}</div>
|