guide.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <view class="wrapper">
  2. <view class="app_page-header-search page-header-search">
  3. <view class="app_page-header-search-warp app_width-690">
  4. <label for="header-search">
  5. <image src="../../image/common/search@2x.png"></image>
  6. </label>
  7. <input
  8. placeholder-class="app_header-search-placeholder"
  9. value=""
  10. placeholder="搜索"></input>
  11. </view>
  12. </view>
  13. <scroll-view
  14. class="app_nav-wrap"
  15. scroll-x="{{true}}"
  16. scroll-with-animation="{{true}}"
  17. scroll-into-view="item-{{currentCategory * 1 < 4 ? navScrollLeft : currentCategory * 1 - 3}}">
  18. <view
  19. class="nav {{currentCategory === item.id ? 'active' : ''}}"
  20. wx:for="{{category}}"
  21. wx:key="id"
  22. data-item="{{item}}"
  23. bind:tap="handleNav">
  24. <view class="photo" id="item-{{index}}">
  25. <image src=""></image>
  26. </view>
  27. <view class="name">{{item.name}}</view>
  28. </view>
  29. </scroll-view>
  30. <!--产品-->
  31. <view
  32. class="waterfall"
  33. hidden="{{currentNav === '1'}}">
  34. <view class="waterfall-left">
  35. <goods-item-large/>
  36. </view>
  37. <view class="waterfall-right">
  38. <goods-item-large/>
  39. </view>
  40. </view>
  41. </view>