业务交流通
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.

12345678910111213141516171819202122232425262728293031
  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 {{ customerId != currentData.customerId ? 'have-hot' : '' }}">
  8. <listItem item="{{ currentData }}" pageStatus="detatil" isCollect="{{ isCollect }}" isShowCollect="{{ customerId != currentData.customerId }}" bind:changeCollect="changeCollect" customerId="{{ userCustomerId }}" />
  9. </view>
  10. <view wx:if="{{ userCustomerId != currentData.customerId }}">
  11. <view class="view-interested">你可能感兴趣的需求</view>
  12. <view class="not-data" wx:if="{{ listData.length < 1 }}">
  13. <image class="not-data-img" src="/images/home/not-data.png" />
  14. <view class="not-info">没有更多感兴趣的需求</view>
  15. </view>
  16. <view wx:else>
  17. <view class="list-view" wx:for="{{ listData }}" wx:key="index">
  18. <listItem item="{{ item }}" bind:getItem="goDetails" customerId="{{ userCustomerId }}" />
  19. </view>
  20. <view class="text-center" wx:if="{{ itemLoading }}">
  21. <van-loading size="24px">加载中...</van-loading>
  22. </view>
  23. <view class="list-finished text-center" wx:if="{{ isFinished }}">
  24. <image class="finished-img" src="/images/home/finished-icon.png" />
  25. 没有更多啦~
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. <tabBar currentIndex="{{currentIndex}}"></tabBar>
  31. </view>