history.wxml 880 B

123456789101112131415161718
  1. <!--pages/history/history.wxml-->
  2. <view class="history-page">
  3. <view id="fixedTop">
  4. <nav-bar id="navBar" title="最近浏览"></nav-bar>
  5. <tabs titles="{{ categoryList }}" is-center="{{true}}" bind:tab="handleTabAction"></tabs>
  6. </view>
  7. <scroll-view scroll-y="true" scroll-top="{{scrollTop}}" style="height: {{ scrollH }}px;"
  8. bindscrolltolower="scrollToLower">
  9. <block wx:if="{{ listData.length }}">
  10. <block wx:for="{{ listData }}" wx:key="index">
  11. <post-cell wx:if="{{item.type == 3}}" data="{{ item }}"></post-cell>
  12. <new-cell wx:else data="{{ item }}"></new-cell>
  13. </block>
  14. </block>
  15. <view wx:if="{{!isEmpty && isEnd}}" class="end-txt">已显示全部内容</view>
  16. </scroll-view>
  17. <empty wx:if="{{isEmpty}}" tips="暂无此内容浏览" top="200"></empty>
  18. </view>