index.wxml 674 B

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