servers.wxml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <!--pages/servers/servers.wxml-->
  2. <view class="servers">
  3. <view class="servers_top z-margin-lr-32" style="padding-top:{{safeTop}};height: {{menuH}};box-sizing: content-box;" bindtap="selectAddress">
  4. <image src="/static/index/blocation.png" class="location_img z-margin-r-16" mode="" />
  5. <view class=" z-font-32">{{address.name}}</view>
  6. <image src="/static/index/black-more.png" class="more"></image>
  7. </view>
  8. <!-- 搜索 -->
  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}}" active="{{ active }}" line-width="0" title-active-color="#62CB81"
  16. title-inactive-color="#A4A9B7" bind:change="onChange">
  17. <van-tab wx:for="{{cate}}" wx:key="id" title="{{item.name}}"></van-tab>
  18. </van-tabs>
  19. <view class="servers_main">
  20. <scroll-view scroll-y class="skill_box z-padding-lr-32" show-scrollbar="{{false}}" enhanced="true" bindscrolltolower="lowerthreshold">
  21. <block wx:for="{{list}}" wx:if="index" wx:key="id">
  22. <skill info="{{item}}" bind:skillTap="skillTap" bind:appoint="skillTap"></skill>
  23. </block>
  24. <van-empty description="暂无服务人员" wx:if="{{finish && list.length === 0}}" />
  25. </scroll-view>
  26. </view>
  27. </view>