businessDetail.wxml 1.2 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. <view class="nav-wrap">
  19. <view
  20. class="{{currentNav === item.value ? 'active' : ''}}"
  21. wx:for="{{nav}}"
  22. wx:key="value"
  23. data-item="{{item}}"
  24. bind:tap="handleNav">{{item.name}}
  25. </view>
  26. </view>
  27. <!--详情-->
  28. <view
  29. class="business-info"
  30. hidden="{{currentNav === '2'}}">
  31. <text class="phone" user-select>电话:12345678900</text>
  32. <text class="wechat" user-select>微信:1234567890</text>
  33. <text class="introduce" user-select>巴啦啦啦,吧啦啦啦啦啦,爸爸啊爸爸爸爸爸爸,爸爸爸爸爸爸。</text>
  34. </view>
  35. <!--产品-->
  36. <view
  37. class="waterfall"
  38. hidden="{{currentNav === '1'}}">
  39. <view class="waterfall-left">
  40. <goods-item/>
  41. </view>
  42. <view class="waterfall-right">
  43. <goods-item/>
  44. </view>
  45. </view>