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.
28 lines
961 B
28 lines
961 B
<view class="topic-content">
|
|
<view class="title">{{detailInfo.topicContent}}</view>
|
|
<view class="image-list" wx:if="{{detailInfo.images.length > 0}}">
|
|
<image
|
|
mode="widthFix"
|
|
bindtap="previewImage"
|
|
data-url="{{item}}"
|
|
wx:for="{{detailInfo.images}}"
|
|
wx:key="{{index}}"
|
|
wx:for-item="item"
|
|
wx:for-index="index"
|
|
src="{{item}}" />
|
|
</view>
|
|
<view class="personal-info">
|
|
<view class="left">
|
|
<image class="avatar" src="{{detailInfo.userAvatar}}" />
|
|
<view class="name">{{detailInfo.nickname}}</view>
|
|
<image wx:if="{{detailInfo.partyMember == '1'}}" class="party-flag" src="../../../../images/ic_dangbiaoqian.png" />
|
|
</view>
|
|
<view class="right">
|
|
<view class="reader">
|
|
<image src="../../../../images/ic_yueduliang.png" />
|
|
<text>{{detailInfo.browseNum}}</text>
|
|
</view>
|
|
<view class="time">{{detailInfo.createdTime}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|