榆山
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

45 lines
1.6 KiB

<view class="detail-content" wx:if="{{isShowDetailContent}}">
<view class="user-info">
<image class="avatar" src="{{topList.userFace}}" wx:if="{{topList.userFace !==''}}"/>
<image class="avatar" src="https://epdc-yushan.elinkservice.cn/files-pro/20210610/bf46696b961a4fa680a824f60861bd0c.png" wx:if="{{topList.userFace ==''}}"/>
<view class="right">
<view class="identify">
<view class="nickname">{{topList.nickName}}</view>
</view>
<view class="right-bottom">
<view class="time">{{topList.createdTime}}</view>
<view class="look-num">
<image class="eye" src="../../../../images/ic_yueduliang.png" />
<text>{{topList.browseTotal}}</text>
</view>
</view>
</view>
</view>
<view class="issue-content">{{topList.topicContent}}</view>
<view class="image-list">
<image
bindtap="preViewImage"
data-src="{{item.imgUrl}}"
mode="widthFix"
wx:for="{{topList.images}}"
wx:for-index="index"
wx:for-item="item"
wx:key="{{index}}"
src="{{item.imgUrl}}" />
</view>
<view class="altitude">
<view class="support normal {{topList.userLike=='1'? 'selected' : ''}}" bindtap="supportIssueOrProject">
<image src="{{topList.userLike=='1' ? supported : support}}" />
<text>赞 {{topList.likesTotal}}</text>
</view>
<view class="dispport normal {{topList.userDislike=='1'? 'selected' : ''}}" bindtap="dispportIssueOrProject">
<image src="{{topList.userDislike=='1' ? dispported : dispport}}" />
<text>踩 {{topList.opposeLTotal}}</text>
</view>
</view>
</view>