index.wxml 829 B

12345678910111213
  1. <nav type="back" background-color="{{activeColor}}" title="民宿" frontColor="#ffffff" />
  2. <van-search shape="round" background="{{activeColor}}" type="text" placeholder="请输入" model:value="{{searchVal}}" bind:search="search" use-action-slot bind:clear="searchClear">
  3. <view slot="action" bind:tap="search" style="color: #ffffff;">搜索</view>
  4. </van-search>
  5. <van-tabs active="{{active}}" id="tabs" bind:change="tabChange" color="{{activeColor}}" nav-class="tab_title">
  6. <van-tab title="推荐" name="recommend" >
  7. </van-tab>
  8. <van-tab title="价格" name="price">
  9. </van-tab>
  10. </van-tabs>
  11. <scroll-view style="height:calc(100vh - {{stickytop+ 98}}px);" scroll-y="{{true}}" bindscrolltolower="loadMore">
  12. <shop-list list="{{hotels}}" bind:toDetail="details"></shop-list>
  13. </scroll-view>