businessDetail.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <text class="phone" user-select>电话:12345678900</text>
  27. <text class="wechat" user-select>微信:1234567890</text>
  28. <text class="introduce" user-select>巴啦啦啦,吧啦啦啦啦啦,爸爸啊爸爸爸爸爸爸,爸爸爸爸爸爸。</text>
  29. </view>
  30. <!--产品-->
  31. <view
  32. class="waterfall"
  33. hidden="{{active === '1'}}">
  34. <view class="waterfall-left">
  35. <goods-item-large/>
  36. </view>
  37. <view class="waterfall-right">
  38. <goods-item-large/>
  39. </view>
  40. </view>