You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
649 B
19 lines
649 B
|
5 years ago
|
<!--pages/order/pay/index.wxml-->
|
||
|
|
<title title="收银台"></title>
|
||
|
|
<view class="tip-box" wx:if="{{info}}">
|
||
|
|
<view>支付剩余时间</view>
|
||
|
|
<view class="tip-time">{{minute}}:{{second}}</view>
|
||
|
|
<view class="tip-price">
|
||
|
|
<text>应付金额:</text>
|
||
|
|
<view class="price">¥{{info.paid_money/100}}</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="pay-methods-box">
|
||
|
|
<view>支付方式:</view>
|
||
|
|
<view class="pay-method">
|
||
|
|
<view class="iconfont icon-weixin1"></view>
|
||
|
|
<view class="method-name">微信支付</view>
|
||
|
|
<view class="iconfont icon-iconfontoptionbutton"></view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="btn" bindtap="pay">立即付款</view>
|