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.
 

42 lines
2.0 KiB

<!--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:if="{{payList.length>0}}" style="border-top:1rpx solid #ccc" bindtap="changePayMethod" data-index="1">
<image src="https://test.m.cloud.sz-trip.com/static/images/numLogo.png" mode="aspectFill"></image>
<view class="method-name">数字人民币</view>
<view class="iconfont {{payIndex==1?'icon-iconfontoptionbutton':'icon-quan'}}"></view>
</view>
</view>
<view class="btn" bindtap="pay">立即付款</view>
<!-- <view class="btn" bindtap="walletPay" wx:else>立即付款</view> -->
<view class="mask" style="align-items:flex-end" wx:if="{{showNumMask}}">
<view class="mask-bg" bindtap="hideNumMask"></view>
<view class="mask-content" style="text-align:center;width:100%;border-radius:0">
<view class="num-pay-top">
<view style="margin-bottom:20rpx">数字人民币支付</view>
<view class="price">¥{{info.paid_money/100}}</view>
</view>
<view style="margin:0 30rpx" class="pay-method" wx:for="{{payList}}" bindtap="changeNumIndex" 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 {{numIndex==index?'icon-iconfontoptionbutton':'icon-quan'}}"></view>
</view>
<view class="btn" bindtap="walletPay" style="margin:25rpx">立即付款</view>
</view>
</view>