...
|
...
|
@@ -26,16 +26,16 @@ |
|
|
<view class="hot-shops">
|
|
|
<view-title title="热门品牌" height="88"></view-title>
|
|
|
<view class="shop-list">
|
|
|
<view wx:for="{{shopList}}" wx:key="{{item.hr_shop_id}}" class="shop-item">
|
|
|
<view wx:for="{{shopList}}" wx:key="{{item.shop_id}}" class="shop-item">
|
|
|
<view class="shop-info">
|
|
|
<image src="{{helper.image(item.brand_ico, 50, 50)}}" class="shop-logo"></image>
|
|
|
<text class="shop-name">{{item.brand_name}}</text>
|
|
|
|
|
|
<view class="go-shop" data-id="{{item.hr_shop_id}}" bindtap="goShopList">进入店铺<text class="iconfont icon-right"></text></view>
|
|
|
<view class="go-shop" data-id="{{item.shop_id}}" bindtap="goShopList">进入店铺<text class="iconfont icon-right"></text></view>
|
|
|
</view>
|
|
|
<view class="scoll-wrap">
|
|
|
<view class="shop-goods">
|
|
|
<view wx:for="{{item.shop_product_list}}" wx:for-item="goods" wx:key="{{index}}" class="goods-item" data-sid="{{item.hr_shop_id}}" data-skn="{{goods.product_skn}}" data-index="{{index}}" bindtap="goProductDetail">
|
|
|
<view wx:for="{{item.shop_product_list}}" wx:for-item="goods" wx:key="{{index}}" class="goods-item" data-sid="{{item.shop_id}}" data-skn="{{goods.product_skn}}" data-index="{{index}}" bindtap="goProductDetail">
|
|
|
<image src="{{helper.image(goods.default_images, 94, 150)}}" class="goods-img"></image>
|
|
|
<text class="price">¥ {{helper.round(goods.sales_price)}}</text>
|
|
|
</view>
|
...
|
...
|
|