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.

23 lines
887 B

<view>
<block wx:for="{{posts_key}}" wx:for-item="item" wx:key="*this">
<view catchtap='jumpBtn' data-postId='{{item.postId}}'>
<view class='middle'>
<view class='author-date'>
<image class='author' src='{{item.avatar}}'></image>
<text class='date'>{{item.author}}</text>
<text class='date'>{{item.date}}</text>
</view>
<text class='title'>{{item.title}}</text>
<image class='post-image' src='{{item.imgSrc}}'></image>
<text class='content'>{{item.content}} </text>
<view class='like'>
<image class='like-image' src='/static/img/chat.png'></image>
<text class='like-font'>{{item.collection}}</text>
<image class='like-image' src='/static/img/view.png'></image>
<text class='like-font'>{{item.reading}}</text>
</view>
</view>
</view>
</block>
</view>