business.wxml 1.4 KB

123456789101112131415161718192021222324252627282930
  1. <!--pages/business/business.wxml-->
  2. <view class="busuness">
  3. <view class="top-box">
  4. <view class="servers_top z-margin-lr-32" style="padding-top:{{safeTop}};height: {{menuH}};box-sizing: content-box;" bindtap="selectAddress">
  5. <image src="/static/index/blocation.png" class="location_img z-margin-r-16" mode="" />
  6. <view class="z-font-32">{{address.name}}</view>
  7. <image src="/static/index/black-more.png" class="more"></image>
  8. </view>
  9. <view class="search">
  10. <van-search value="{{ value }}" shape="round" background="transparent" placeholder="请输入商家名" use-right-icon-slot
  11. bind:change="nameChange" bind:search="onSearch">
  12. <view class="right-icon z-font-22 z-flex" slot="right-icon" bind:tap="onSearch">搜索</view>
  13. </van-search>
  14. </view>
  15. <van-tabs wx:if="{{cate.length > 1}}" line-width="0" title-active-color="#62CB81" title-inactive-color="#A4A9B7"
  16. bind:change="onChange">
  17. <van-tab wx:for="{{cate}}" wx:key="id" title="{{item.label}}"></van-tab>
  18. </van-tabs>
  19. </view>
  20. <view class="main-box">
  21. <scroll-view scroll-y class="shopbox z-padding-lr-32" show-scrollbar="{{false}}" enhanced="true" bindscrolltolower="lowerthreshold">
  22. <block wx:for="{{list}}" wx:key="id">
  23. <shop info="{{item}}" bind:shopTap="shopTap"></shop>
  24. </block>
  25. <van-empty description="暂无商家" wx:if="{{finish && list.length === 0}}" />
  26. </scroll-view>
  27. </view>
  28. </view>