dm-wechat-mini/components/shopItem/index.wxml
2025-02-13 19:11:45 +08:00

22 lines
828 B
Plaintext

<view class="page-container shop-item">
<image class="logo" src="{{data.optimized_brand_image_url}}"/>
<view class="content">
<view class="line1">{{data.name}}</view>
<view class="line2">
<view class="line2-1">{{data.address}}</view>
<view class="line2-2">{{data.distance||''}}</view>
</view>
<view class="promation buy">
<view class="coupon">
<label class="tag">[在线买单]</label>
<label class="detail">赠送蜂蜜{{data.pay_gift_points_rate}}%</label>
</view>
</view>
<view class="promation">
<view class="coupon" wx-if="{{data.featured_product}}">
<label class="tag">[{{data.featured_product.promotion_text}}]</label>
<label class="detail">{{data.featured_product.product_name}}</label>
</view>
</view>
</view>
</view>