guide.wxml 727 B

123456789101112131415161718192021
  1. <view class="wrapper">
  2. <view class="page-header-search">
  3. <view class="app_page-header-search-warp">
  4. <label for="header-search">
  5. <image src=""></image>
  6. </label>
  7. <input placeholder-class="app_header-search-placeholder" value="" placeholder="搜索"></input>
  8. </view>
  9. <view class="shopping-car" bind:tap="jumpShoppingCar">
  10. <image src=""></image>
  11. </view>
  12. </view>
  13. <scroll-view class="app_nav-wrap" scroll-x="{{true}}">
  14. <view class="nav {{currentCategory === item.id ? 'active' : ''}}" wx:for="{{category}}" wx:key="id">
  15. <view class="photo">
  16. <image src=""></image>
  17. </view>
  18. <view class="name">{{item.name}}</view>
  19. </view>
  20. </scroll-view>
  21. </view>