index.wxml 857 B

123456789101112131415161718192021
  1. <navbar parameter='{{parameter}}'></navbar>
  2. <view class='sign-record'>
  3. <view class='list' wx:for="{{signList}}" wx:key='index'>
  4. <view class='item'>
  5. <view class='data'>{{item.month}}</view>
  6. <view class='listn'>
  7. <view class='itemn acea-row row-between-wrapper' wx:for="{{item.list}}" wx:key='index'>
  8. <view>
  9. <view class='name line1'>{{item.title}}</view>
  10. <view>{{item.add_time}}</view>
  11. </view>
  12. <view class='num font-color'>+{{item.number}}</view>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. <view class='loadingicon acea-row row-center-wrapper'>
  18. <text class='loading iconfont icon-jiazai' hidden='{{loading==false}}'></text>{{loadtitle}}
  19. </view>
  20. </view>
  21. <authorize bind:onLoadFun="onLoadFun"></authorize>