This commit is contained in:
yanran200730
2023-06-09 13:44:37 +08:00

View File

@@ -99,12 +99,17 @@
<div>{{item.cardUserId}}</div> <div>{{item.cardUserId}}</div>
</div> </div>
<div class="card-right"> <div class="card-right">
<img src="./img/user-img.png" alt=""> <img :src="item.cardUserAvatar" alt="" v-if="item.cardUserAvatar">
<img src="./img/user-img.png" alt="" v-else>
</div> </div>
</div> </div>
<!-- <div class="bottom">个人名片</div> --> <!-- <div class="bottom">个人名片</div> -->
</div> </div>
<img :src="item.sdkFileUrl" alt="" v-if="item.msgType == 'emotion'" :style="[{width: item.width+'px'}, {height: item.height+'px'}]">
<img :src="item.userAvatar" alt="" class="user-img" v-if="item.userId == id"> <img :src="item.userAvatar" alt="" class="user-img" v-if="item.userId == id">
<!-- <i class="el-icon-warning" v-if="item.userId != id"></i> --> <!-- <i class="el-icon-warning" v-if="item.userId != id"></i> -->
</div> </div>