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.
22 lines
918 B
22 lines
918 B
<view class="topic-item" bindtap="toDetail" data-topicid="{{topicObj.id}}">
|
|
<view class="content">{{topicObj.topicContent}}</view>
|
|
<view wx:if="{{topicObj.images.length > 0}}" class="image-list" style="height: {{topicObj.images.length === 1 ? '350rpx' : topicObj.images.length === 2 ? '210rpx' : '160rpx'}}">
|
|
<image
|
|
mode="aspectFill"
|
|
catchtap="previewImage"
|
|
data-src="{{item}}"
|
|
wx:for="{{topicObj.images}}"
|
|
wx:key="{{index}}"
|
|
wx:for-item="item"
|
|
wx:for-index="index"
|
|
src="{{item}}" />
|
|
</view>
|
|
<view class="info">
|
|
<view class="left">
|
|
<image class="avatar" src="{{topicObj.userFace}}"/>
|
|
<view class="name">{{topicObj.nickname}}</view>
|
|
<image wx:if="{{topicObj.partyMember == '1'}}" class="party-flag" src="../../../../images/mine/ic_dangbiaoqian.png" />
|
|
</view>
|
|
<view class="time">{{topicObj.createdTime}}</view>
|
|
</view>
|
|
</view>
|