<!-- 轮播 -->
<view class="page-section">
  <swiper
    indicator-dots="{{true}}"
    indicator-color="rgba(130, 130, 130, 1)"
    indicator-active-color="#FFF"
    autoplay="{{false}}">
    <block wx:for="{{background}}" wx:key="*this">
      <swiper-item>
        <view class="swiper-item {{item}}">
          <image src=""></image>
        </view>
      </swiper-item>
    </block>
  </swiper>
</view>
<view class="business-name">张三供应商</view>
<customer-tab
  nav="{{nav}}"
  active="{{active}}"
  bind:change="handleNav"/>
  <!--详情-->
<view
  class="business-info"
  hidden="{{active === '2'}}">
  <text class="phone" user-select>电话:12345678900</text>
  <text class="wechat" user-select>微信:1234567890</text>
  <text class="introduce" user-select>巴啦啦啦,吧啦啦啦啦啦,爸爸啊爸爸爸爸爸爸,爸爸爸爸爸爸。</text>
</view>
  <!--产品-->
<view
  class="waterfall"
  hidden="{{active === '1'}}">
  <view class="waterfall-left">
    <goods-item-large/>
  </view>
  <view class="waterfall-right">
    <goods-item-large/>
  </view>
</view>