Files
AGuestSaas/components/mallIndex_hot/mallIndex_hot.wxml
2020-12-28 09:16:11 +08:00

24 lines
1.1 KiB
Plaintext

<!-- 优惠热卖 -->
<view class="hot">
<view class="hot-title">
<view class="hot-name">
优惠热卖
</view>
<navigator hover-class="none" url="/pages/mall_goods/mall_goods?type=hotCut" class="hot-more">
更多<image class="hot-more-icon" src="/static/mall_icon/mallIndex_more.png"></image>
</navigator>
</view>
<scroll-view class="hot-scroll" scroll-x>
<view class="hot-list" wx:for="{{hotSale}}" wx:key="hotSale" data-id="{{item.goods_id}}" bindtap="hotTap">
<image class="hot-img" src="{{item.cover}}" mode="aspectFill"></image>
<view class="hot-cont">
<view class="nowrap hot-name">{{item.title}}</view>
<view class="hot-price"><text>¥</text>{{item.prices.price}}<view class="hot-cost">协会 ¥{{item.prices.association}}</view></view>
<view class="recommend-mark">
<text class="recommend-vip">vip</text>
¥{{item.prices.vip}}
</view>
</view>
</view>
</scroll-view>
</view>