businessDetail.wxml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- 轮播 -->
  2. <view class="page-section">
  3. <swiper
  4. indicator-dots="{{true}}"
  5. indicator-color="rgba(130, 130, 130, 1)"
  6. indicator-active-color="#FFF"
  7. autoplay="{{false}}">
  8. <block wx:for="{{background}}" wx:key="*this">
  9. <swiper-item>
  10. <view class="swiper-item {{item}}">
  11. <image src=""></image>
  12. </view>
  13. </swiper-item>
  14. </block>
  15. </swiper>
  16. </view>
  17. <view class="business-name">张三供应商</view>
  18. <customer-tab
  19. nav="{{nav}}"
  20. active="{{active}}"
  21. bind:change="handleNav"/>
  22. <!--详情-->
  23. <view
  24. class="business-info"
  25. hidden="{{active === '2'}}">
  26. <business-detail-large/>
  27. </view>
  28. <!--产品-->
  29. <view
  30. class="waterfall"
  31. hidden="{{active === '1'}}">
  32. <view class="waterfall-left">
  33. <goods-item-large/>
  34. </view>
  35. <view class="waterfall-right">
  36. <goods-item-large/>
  37. </view>
  38. </view>
  39. <view class="pullup-wrapper" wx:if="{{!isRefresh && active === '2'}}">
  40. <van-loading
  41. wx:if="{{!finished}}"
  42. size="24px"
  43. type="spinner">加载中...
  44. </van-loading>
  45. </view>