12345678910111213141516171819 |
- <view class="index">
- <!-- 搜索栏 -->
- <van-search value="{{ value }}" placeholder="请输入商家名称" use-action-slot bind:change="onChange" bind:search="onSearch">
- <view slot="action" bind:tap="onClick">搜索</view>
- </van-search>
- <!-- 主页轮播图 -->
- <swiper class="swiper" indicator-dots indicator-color="#CBCBCB" indicator-active-color="#F9872C" autoplay interval="2000" circular>
- <swiper-item>
- <image src="/images/image/swiper1-index.png"></image>
- </swiper-item>
- <swiper-item>
- <image src="/images/image/swiper1-index.png"></image>
- </swiper-item>
- </swiper>
- <!-- 商品标签页 -->
- </view>
|