53 lines
2.5 KiB
Plaintext
53 lines
2.5 KiB
Plaintext
|
|
<view class="content">
|
|
<view class="info">
|
|
<view class="title">实付金额</view>
|
|
<view class="price"><text>¥</text>{{total}}</view>
|
|
<view class="no">
|
|
<view class="no-title">支付金额包含订单</view>
|
|
<view class="no-list {{noShow ? 'active' : ''}}">
|
|
<view class="no-list-item" wx:for="{{orderNos}}" wx:key="order_nos">
|
|
<view class="no-list-item">订单号:{{item}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="no-show {{noShow ? 'active' : ''}}" bindtap="noTap" wx:if="{{orderNos.length > 1}}">{{noShow ? '收起' : '展开'}} <image src="/static/icons/arrowWrite.png"></image></view>
|
|
</view>
|
|
</view>
|
|
<!-- 选择支付方式 -->
|
|
<view class="radio-title">选择支付方式</view>
|
|
<view class="radio-group">
|
|
<radio-group bindchange="onPayType">
|
|
<label class="radio-flex" wx:if="{{can.wechat == 1}}">
|
|
<view class="radio-text">
|
|
<image class="radio-icon" src="/static/pay/wechat.png"></image>
|
|
<text>微信支付</text>
|
|
</view>
|
|
<radio class="radio-radio" value="wechat" color="#da2b54" checked="{{payType == 'wechat'}}"/>
|
|
</label>
|
|
<label class="radio-flex" wx:if="{{can.coin == 1}}">
|
|
<view class="radio-text">
|
|
<image class="radio-icon" src="/static/pay/coin.png"></image>
|
|
<text>自选额度</text>
|
|
</view>
|
|
<radio class="radio-radio" value="coin" color="#da2b54" checked="{{payType == 'coin'}}"/>
|
|
</label>
|
|
<label class="radio-flex" wx:if="{{can.baofu == 1}}">
|
|
<view class="radio-text">
|
|
<image class="radio-icon" src="/static/pay/wechat.png"></image>
|
|
<text>微信支付(宝付)</text>
|
|
</view>
|
|
<radio class="radio-radio" value="baofu" color="#da2b54" checked="{{payType == 'baofu'}}"/>
|
|
</label>
|
|
</radio-group>
|
|
<view class="radio-lay" wx:if="{{loding}}"></view>
|
|
</view>
|
|
<!-- 支付 -->
|
|
<view class="pay">
|
|
<button class="pay-btn" size="default" disabled="{{loding}}" loading="{{loding}}" bind:tap="onPay">立即支付</button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="pack-center pages-hint grey">
|
|
<image src="/static/icons/loadingGif.gif"></image>
|
|
<view>疯狂加载中...</view>
|
|
</view> |