Fix:4003 【商城小程序】互动消息列表,点击时未跳转至资讯详情
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<view class=" call-message">
|
||||
<view class="comment-list v12-pa-3">
|
||||
<view class="v12-mt-2" v-for="(comment, index) in list" :key="index" @click="toInfo(comment)">
|
||||
<view class="user-info v12-align-center">
|
||||
<view class="user-info v12-align-center" @click="toInfo(comment)">
|
||||
<view class="user-avatar">
|
||||
<u-avatar :src="comment.senderUserAvatar"></u-avatar>
|
||||
</view>
|
||||
@@ -22,16 +22,16 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="user-info v12-d-flex" >
|
||||
<view class="user-avatar">
|
||||
<view class="user-avatar" @click="toInfo(comment)">
|
||||
<view style="opacity: 0;">
|
||||
<u-avatar></u-avatar>
|
||||
</view>
|
||||
</view>
|
||||
<view class="user-name v12-ml-3">
|
||||
<view class="user-name v12-ml-3" @click="toInfo(comment)">
|
||||
<view class="v12-font-30 v12-font-bold v12-my-2 v12-dark-text" v-if="!comment.isRootReply">
|
||||
{{ comment.parentReply }}
|
||||
</view>
|
||||
<view class="v12-font-28 v12-dark2-text">
|
||||
<view class="v12-font-28 v12-dark2-text" @click="toInfo(comment)">
|
||||
{{ comment.reply }}
|
||||
</view>
|
||||
<view class="v12-mt-3">
|
||||
|
||||
Reference in New Issue
Block a user