22 lines
814 B
Plaintext
22 lines
814 B
Plaintext
<page-container show="{{isShowConfirm}}" round close-on-slide-down>
|
|
<view class="content pc-content">
|
|
<view class="title">{{product.name}}</view>
|
|
<view class="tags">
|
|
<view class="tag" wx:for="{{product.tags}}"
|
|
wx:for-item="tag" wx:for-index="tIndex" wx:key="tIndex">{{tag}}</view>
|
|
</view>
|
|
<view class="spliter"></view>
|
|
<view class="price">
|
|
<view class="left">
|
|
<label class="key">团购价</label>
|
|
<label class="money">{{calculatedPrice.amount}}</label>
|
|
</view>
|
|
<view class="right">
|
|
<label class="key">赠送蜂蜜</label>
|
|
<label class="weight">{{calculatedPrice.gift_points}}克</label>
|
|
</view>
|
|
</view>
|
|
|
|
<button class="button" type="primary" bind:tap="getOrder">立即抢购</button>
|
|
</view>
|
|
</page-container> |