[更新]
This commit is contained in:
48
pages/cashier/cashier.wxml
Normal file
48
pages/cashier/cashier.wxml
Normal file
@@ -0,0 +1,48 @@
|
||||
<!-- 头部工具 -->
|
||||
<view class="barHeader" style="padding-top:{{barHeight}}px;" bindtap="payReturn">
|
||||
<image class="barHeader-tool-icon" src="/static/icon/arrow_right.png" mode="widthFix"></image>
|
||||
<view class="barHeader-title">订单支付</view>
|
||||
</view>
|
||||
|
||||
<view style="padding-top: {{barHeight + 45}}px">
|
||||
<view class="cashierTips">
|
||||
<image src="/static/img/cashierTips_icon.png" mode="aspectFill"></image>注:推荐使用沃支付,可在享优惠!
|
||||
</view>
|
||||
<view class="cashierCont">
|
||||
<view class="cashierCont-title">
|
||||
<text>支付类型</text>线上支付
|
||||
</view>
|
||||
<view class="cashierCont-price">
|
||||
<view class="cashierCont-price-title">
|
||||
付款金额
|
||||
</view>
|
||||
<view class="cashierCont-price-number">
|
||||
¥{{ allAmount }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="cashierCont-pay">
|
||||
<view class="cashierCont-pay-title">
|
||||
付款方式<text>*</text>
|
||||
</view>
|
||||
<view class="cashierCont-pay-way">
|
||||
<radio-group bindchange="radioChange">
|
||||
<view class="cashierCont-way-label {{ current == 1 ? 'active' : ''}}" wx:if="{{unicomPay}}">
|
||||
<view class="payContList-label-name">
|
||||
<image class="payContList-label-img" src="/static/img/wqb.jpg"></image>
|
||||
<text>沃支付支付</text>
|
||||
</view>
|
||||
<radio class="radio" value="1" checked></radio>
|
||||
</view>
|
||||
<view class="cashierCont-way-label {{ current == 2 ? 'active' : ''}}">
|
||||
<view class="payContList-label-name">
|
||||
<image class="payContList-label-img" src="/static/img/wx.jpg"></image>
|
||||
<text>微信支付</text>
|
||||
</view>
|
||||
<radio class="radio" value="2"></radio>
|
||||
</view>
|
||||
</radio-group>
|
||||
</view>
|
||||
<button class="payBtn" bindtap="submitPay" disabled="{{disabledOk}}">立即支付</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user