|
|
|
@ -9,7 +9,8 @@ |
|
|
|
</view> |
|
|
|
<view class="lf-flex-column lf-m-l-20"> |
|
|
|
<view> |
|
|
|
<text class="lf-font-32 lf-color-black lf-font-bold lf-m-r-15">{{discover_details.user.nick_name}}</text> |
|
|
|
<text class="lf-font-32 lf-color-black lf-font-bold lf-m-r-15" v-if="discover_details.user.nick_name">{{discover_details.user.nick_name}}</text> |
|
|
|
<text class="lf-font-32 lf-color-black lf-font-bold lf-m-r-15" v-else>{{discover_details.user.mobile_replace}}</text> |
|
|
|
<text class="lf-iconfont icon-xiangyou lf-color-777 lf-text-vertical" style="font-size: 18rpx;"></text> |
|
|
|
</view> |
|
|
|
<view class="lf-font-24 lf-color-777 lf-m-t-15">{{discover_details.updated_at}}</view> |
|
|
|
@ -46,10 +47,12 @@ |
|
|
|
<view class="lf-m-t-20" @click="applySub(commentitem.user.id,commentitem.id)"> |
|
|
|
<view class="lf-flex"> |
|
|
|
<view @click="$url('/pages/user/my/my?user_id='+commentitem.user_id)"> |
|
|
|
<image class="comment-img" :src="commentitem.user.avatar" mode="aspectFill"></image> |
|
|
|
<image class="comment-img" :src="commentitem.user.avatar" v-if="commentitem.user.avatar" mode="aspectFill"></image> |
|
|
|
<image class="comment-img" src="../../static/images/empty.png" v-else mode="aspectFill"></image> |
|
|
|
</view> |
|
|
|
<view class="lf-flex-column lf-m-l-20"> |
|
|
|
<view class="lf-color-999 lf-font-24">{{commentitem.user.nick_name}}</view> |
|
|
|
<view class="lf-color-999 lf-font-24" v-if="commentitem.user.nick_name">{{commentitem.user.nick_name}}</view> |
|
|
|
<view class="lf-color-999 lf-font-24" v-else>{{commentitem.user.mobile_replace}}</view> |
|
|
|
<view> |
|
|
|
<view class="lf-color-black lf-line-2" style="max-width:550rpx;">{{commentitem.content}}<text class="lf-color-999 lf-font-24 lf-m-l-10">{{commentitem.created_at}}</text></view> |
|
|
|
</view> |
|
|
|
@ -67,14 +70,17 @@ |
|
|
|
<view class="lf-flex" @click="applySub(subitem.user.id,subitem.parent_id)"> |
|
|
|
<view class="lf-flex lf-m-t-30"> |
|
|
|
<view @click="$url('/pages/user/my/my?user_id='+subitem.user_id)"> |
|
|
|
<image class="comment-img" :src="subitem.user.avatar" mode="aspectFill"></image> |
|
|
|
<image class="comment-img" :src="subitem.user.avatar" v-if="subitem.user.avatar" mode="aspectFill"></image> |
|
|
|
<image class="comment-img" src="../../static/images/empty.png" v-else mode="aspectFill"></image> |
|
|
|
</view> |
|
|
|
<view class="lf-flex-column lf-m-l-20"> |
|
|
|
<view class="lf-flex"> |
|
|
|
<view class="lf-color-999 lf-font-24 lf-m-r-10">{{subitem.user.nick_name}}</view> |
|
|
|
<view class="lf-color-999 lf-font-24 lf-m-r-10" v-if="subitem.user.nick_name">{{subitem.user.nick_name}}</view> |
|
|
|
<view class="lf-color-999 lf-font-24 lf-m-r-10" v-else>{{subitem.user.mobile_replace}}</view> |
|
|
|
<view class="lf-row-center" style="max-width: 446rpx;"> |
|
|
|
<text class="lf-color-333 lf-m-r-10">回复</text> |
|
|
|
<text class="lf-font-24 lf-color-999">{{subitem.to_user.nick_name}}:</text> |
|
|
|
<text class="lf-font-24 lf-color-999" v-if="subitem.to_user.nick_name">{{subitem.to_user.nick_name}}:</text> |
|
|
|
<text class="lf-font-24 lf-color-999" v-else>{{subitem.to_user.mobile_replace}}:</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view style="max-width: 460rpx;"> |
|
|
|
|