index.wxml 650 B

12345678910111213141516171819
  1. <view class="index">
  2. <!-- 搜索栏 -->
  3. <van-search value="{{ value }}" placeholder="请输入商家名称" use-action-slot bind:change="onChange" bind:search="onSearch">
  4. <view slot="action" bind:tap="onClick">搜索</view>
  5. </van-search>
  6. <!-- 主页轮播图 -->
  7. <swiper class="swiper" indicator-dots indicator-color="#CBCBCB" indicator-active-color="#F9872C" autoplay interval="2000" circular>
  8. <swiper-item>
  9. <image src="/images/image/swiper1-index.png"></image>
  10. </swiper-item>
  11. <swiper-item>
  12. <image src="/images/image/swiper1-index.png"></image>
  13. </swiper-item>
  14. </swiper>
  15. <!-- 商品标签页 -->
  16. </view>