业务交流通
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Details.wxml 1.4KB

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