41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<!-- 支付 -->
|
|
<view class="order-content">
|
|
<view class="order-title">订单信息</view>
|
|
<view class="order-total">
|
|
<view class="order-total-li order-total-number">
|
|
<view class="order-total-name">订单编号</view>
|
|
{{orderData.trade_no}}
|
|
</view>
|
|
<view class="order-total-li">
|
|
<view class="order-total-name">商品总价</view>
|
|
¥{{orderData.amount}}
|
|
</view>
|
|
<view class="order-total-li">
|
|
<view class="order-total-name">运费</view>
|
|
¥{{orderData.freight}}
|
|
</view>
|
|
<view class="order-total-li">
|
|
<view class="order-total-name">应付总价</view>
|
|
<view class="coupon-picker-red">
|
|
¥{{orderData.total}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="order-title">支付方式</view>
|
|
<view class="payContList">
|
|
<radio-group bindchange="radioChange">
|
|
<view class="payContList-label">
|
|
<view class="payContList-label-name">
|
|
<image class="payContList-label-img" src="/static/mall_icon/pay_00.png"></image>
|
|
<view>微信支付</view>
|
|
</view>
|
|
<radio class="radio" checked></radio>
|
|
</view>
|
|
</radio-group>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="address-footer">
|
|
<text bindtap="payment">立即支付</text>
|
|
</view> |