业务交流通
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Details.wxml 1.5KB

12345678910111213141516171819202122232425262728293031323334
  1. <!-- pages/index/components/listDetails/Details.wxml -->
  2. <view class="details-page page-container">
  3. <view class="list-loading text-center" wx:if="{{ pageLoading }}">
  4. <van-loading size="24px">加载中...</van-loading>
  5. </view>
  6. <view wx:else>
  7. <view class="list-view">
  8. <listItem
  9. item="{{ currentData }}"
  10. pageStatus="detatil"
  11. isCollect="{{ isCollect }}"
  12. isShowCollect="{{ customerId != currentData.customerId }}"
  13. bind:changeCollect="changeCollect" />
  14. </view>
  15. <view class="view-interested">你可能感兴趣的需求</view>
  16. <view class="not-data" wx:if="{{ listData.length < 1 }}">
  17. <image class="not-data-img" src="/images/home/not-data.png" />
  18. <view class="not-info">没有更多感兴趣的需求</view>
  19. </view>
  20. <view wx:else>
  21. <view class="list-view" wx:for="{{ listData }}" wx:key="*this">
  22. <listItem item="{{ item }}" bind:getItem="goDetails" />
  23. </view>
  24. <view class="text-center" wx:if="{{ itemLoading }}">
  25. <van-loading size="24px">加载中...</van-loading>
  26. </view>
  27. <view class="list-finished text-center" wx:if="{{ isFinished }}">
  28. <image class="finished-img" src="/images/home/finished-icon.png" />
  29. 没有更多啦~
  30. </view>
  31. </view>
  32. </view>
  33. <tabBar currentIndex="{{currentIndex}}"></tabBar>
  34. </view>