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.
|
|
|
|
<!--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" bindtap="changePayMethod" data-index="-1">
|
|
|
|
|
<view class="iconfont icon-weixin1"></view>
|
|
|
|
|
<view class="method-name">微信支付</view>
|
|
|
|
|
<view class="iconfont {{payIndex==-1?'icon-iconfontoptionbutton':'icon-quan'}}"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="pay-method" wx:for="{{payList}}" style="border-top:1rpx solid #ccc" bindtap="changePayMethod" data-index="{{index}}">
|
|
|
|
|
<image src="{{item.bank_logo}}" mode="aspectFill"></image>
|
|
|
|
|
<!-- <view class="iconfont icon-weixin1"></view> -->
|
|
|
|
|
<view class="method-name">{{item.bank_name}}</view>
|
|
|
|
|
<view class="iconfont {{payIndex==index?'icon-iconfontoptionbutton':'icon-quan'}}"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btn" bindtap="pay" wx:if="{{payIndex==-1}}">立即付款</view>
|
|
|
|
|
<view class="btn" bindtap="walletPay" wx:else>立即付款</view>
|