nrcomments.wxml 600 B

1234567891011121314
  1. <wxs module="filters" src="../../utils/toFixed.wxs" />
  2. <scroll-view scroll-y='{{true}}' bindscrolltolower='next'>
  3. <view class="list" wx:for="{{list}}">
  4. <image style="width: 100%;" mode="withFix" src="{{item.img}}"></image>
  5. <view class="stock_name">{{item.stock_name}}
  6. <text>{{item.stock_code}}</text>
  7. </view>
  8. <view class="desc">{{item.content}}</view>
  9. <view class="nr">{{filters.getDate(item.ctime)}}</view>
  10. </view>
  11. <block wx:if='{{total >= 20}}'>
  12. <view class='loading' wx:if='{{list.length < total}}'>上拉加载更多...</view>
  13. </block>
  14. </scroll-view>