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.
30 lines
1.2 KiB
30 lines
1.2 KiB
<view class="layout" wx:for="{{list}}" wx:key="{{index}}">
|
|
<view class="subject-item">
|
|
<view class="wux-pull-left imgView">
|
|
<image src="{{item.userFace}}" />
|
|
</view>
|
|
<view class="wux-pull-left">
|
|
<view class="subject-title">
|
|
{{page}}{{item.userName}}
|
|
</view>
|
|
<view class="time">{{item.createdTime}}</view>
|
|
</view>
|
|
<view class="btn-size-small wux-pull-right">
|
|
<view class="wux-pull-left good">
|
|
<image class="wux-pull-left" src="/images/good.png" />
|
|
<view class="wux-pull-left goodfont">{{item.likeCount}}</view>
|
|
</view>
|
|
<view class="wux-pull-right bad">
|
|
<view class="wux-pull-right goodfont">{{item.unLikeCount}}</view>
|
|
<image class="wux-pull-right" src="/images/bad.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btmbar">
|
|
<view class="halfwidth attitude">{{item.content}}</view>
|
|
</view>
|
|
<view class="_btmbar" data-commentId="{{item.id}}" wx:if="{{item.replyCount > 0}}" bindtap="toCommentsContent">
|
|
<view class="_halfwidth _attitude">{{item.replyCount}}条回复></view>
|
|
</view>
|
|
</view>
|
|
<view class="loadmore">上滑加载更多</view>
|