index.axml 713 B

1234567891011121314151617181920
  1. <view class='list' ref='saveChildRef0'>
  2. <view class='item' a:for='{{list}}' a:key='{{index}}' data-item='{{item}}' ref-numbers='{{list}}' onTap='antmoveAction' data-antmove-tap='goDetails'>
  3. <view class='flex-around'>
  4. <view class='flex'>
  5. <view class='tit'>
  6. {{item.desc}}
  7. </view>
  8. <view class='time'>
  9. 上报时间:{{item.reportTime}}
  10. </view>
  11. </view>
  12. <image src="../../../static/function-bar/{{item.status==1?'pending':item.status==2?'processing':item.status==3?'processed':'close'}}.png">
  13. </image>
  14. </view>
  15. </view>
  16. <view class='tip-area' a:if='{{list.length<=0}}'>
  17. <text>
  18. ~暂无更多~ </text>
  19. </view>
  20. </view>