12345678910111213141516171819202122232425 |
- <!--index.wxml-->
- <!--pages/index/index.wxml-->
- <view class="container">
- <scroll-view class="type-scroll" scroll-y>
- <view class="type-container">
- <view class="type-box" wx:for-items="{{categories}}" wx:key="scroll">
- <view id="{{item.catelogId}}" class="type-navbar-item {{activeCategoryId==item.catelogId?'type-item-on':''}}" bindtap="tabClick">
- {{item.catelogName}}
- </view>
- </view>
- </view>
- </scroll-view>
- <scroll-view class="goods-scroll" scroll-y>
- <view class="goods-container">
- <view class="goods-box" wx:for="{{goods}}" wx:key="goods" data-id="{{item.goodsId}}" data-kucun="{{item.kucun}}" data-cid="{{item.goodsCatelogId}}" bindtap="tabDetails">
- <view class="image-box">
- <image src="{{imgurl + item.goodsPic}}"></image>
- </view>
- <view class="goods-title">{{item.goodsName}} ({{item.zan}}赞)</view>
- <view class="goods-price">¥{{item.goodsShichangjia}}</view>
- </view>
- </view>
- </scroll-view>
- </view>
|