12345678910111213141516171819202122 |
- <!-- 搜索框 -->
- <view class="search_container">
- <view class="inputContent">
- <van-icon name="search" />
- <input type="text" bindinput="onInput" bindconfirm="onInput" placeholder="搜索商品名称" />
- <button bindtap="onSearch" bintap="onSearch">搜索</button>
- </view>
- <!-- 主页轮播图 -->
- <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>
|