wait-for-do.wxml 831 B

1234567891011121314151617181920212223
  1. <scroll-view scroll-y class="bg-scroll-view" style="background-color:{{(data.length == 0 && !isLoading) ? 'white' : '#F5F5F5'}};">
  2. <!-- <view style="width:100%;height:0.7px;background-color:#eeeeee;"></view> -->
  3. <view wx:for="{{data}}" wx:key="" class="item" bindtap="goToDetails" id="{{index}}">
  4. <view>
  5. <text>{{item.source_name}}</text>
  6. <view hidden="{{item.todo_flag != 1}}"></view>
  7. <text>{{item.city_name ? item.city_name : ''}}</text>
  8. <image src="../../../../icon/public/arrow_right.png"></image>
  9. </view>
  10. <view>
  11. <text>{{item.d}}</text>
  12. <text class="status{{item.sc}}">{{item.s}}</text>
  13. </view>
  14. </view>
  15. <view wx:if="{{data.length == 0 && !isLoading}}" class="no-data">
  16. <image src="../../../../icon/public/wait_t_d_empty.png"></image>
  17. <text>暂无待办事项</text>
  18. </view>
  19. </scroll-view>