category.wxml 778 B

12345678910111213141516171819
  1. <view class="container">
  2. <view class="cate-nav">
  3. <scroll-view scroll-x="true" class="cate-nav-body" style="width: 750rpx;" scroll-left="{{scrollLeft}}">
  4. <view wx:for="{{navList}}" class="item {{ id == item.id ? 'active' : ''}}" wx:key="id" data-id="{{item.id}}" data-index="{{index}}" bindtap="switchCate">
  5. <view class="name">{{item.name}}</view>
  6. </view>
  7. </scroll-view>
  8. </view>
  9. <scroll-view scroll-y="true" scroll-top="{{scrollTop}}" style="height:{{scrollHeight}};">
  10. <view class="cate-item">
  11. <view class="h">
  12. <text class="name">{{currentCategory.name}}</text>
  13. <text class="desc">{{currentCategory.frontName}}</text>
  14. </view>
  15. <goodList goods="{{goodsList}}"></goodList>
  16. </view>
  17. </scroll-view>
  18. </view>