123456789101112131415161718192021 |
- <view class="wrapper">
- <view class="app_page-header-search">
- <view class="app_page-header-search-warp">
- <label for="header-search">
- <image src=""></image>
- </label>
- <input placeholder-class="app_header-search-placeholder" value="" placeholder="搜索"></input>
- </view>
- <view class="shopping-car" bind:tap="jumpShoppingCar">
- <image src=""></image>
- </view>
- </view>
- <scroll-view class="app_nav-wrap" scroll-x="{{true}}">
- <view class="nav {{currentCategory === item.id ? 'active' : ''}}" wx:for="{{category}}" wx:key="id">
- <view class="photo">
- <image src=""></image>
- </view>
- <view class="name">{{item.name}}</view>
- </view>
- </scroll-view>
- </view>
|