index.wxml 1.0 KB

12345678910111213141516171819202122232425
  1. <!--index.wxml-->
  2. <!--pages/index/index.wxml-->
  3. <view class="container">
  4. <scroll-view class="type-scroll" scroll-y>
  5. <view class="type-container">
  6. <view class="type-box" wx:for-items="{{categories}}" wx:key="scroll">
  7. <view id="{{item.catelogId}}" class="type-navbar-item {{activeCategoryId==item.catelogId?'type-item-on':''}}" bindtap="tabClick">
  8. {{item.catelogName}}
  9. </view>
  10. </view>
  11. </view>
  12. </scroll-view>
  13. <scroll-view class="goods-scroll" scroll-y>
  14. <view class="goods-container">
  15. <view class="goods-box" wx:for="{{goods}}" wx:key="goods" data-id="{{item.goodsId}}" data-kucun="{{item.kucun}}" data-cid="{{item.goodsCatelogId}}" bindtap="tabDetails">
  16. <view class="image-box">
  17. <image src="{{imgurl + item.goodsPic}}"></image>
  18. </view>
  19. <view class="goods-title">{{item.goodsName}} ({{item.zan}}赞)</view>
  20. <view class="goods-price">¥{{item.goodsShichangjia}}</view>
  21. </view>
  22. </view>
  23. </scroll-view>
  24. </view>