12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <view wx:if="{{ show }}" class="wrapper">
- <view class="pay-ment" catchtouchmove='true'>
- <view style='width:100%'>
- <van-nav-bar safe-area-inset-top="{{false}}" title="支付订单" right-text="取消" bind:click-right="onClickHide" />
- </view>
- <!-- <text class='title'>支付订单</text> -->
- <view class='payInfo'>
- <view class='count-down'>
- <text>剩余支付时间:</text>
- <van-count-down time="{{ 1500000 }}" format='mm:ss' />
- </view>
- <view class='money'>
- <text class="text symbol">¥</text>
- <text class="text price">{{price}}</text>
- </view>
- <!-- <view class='payee'>收款方/view> -->
- </view>
- <view class='payment-content'>
- <view class='case' wx:if="{{showType == 'all' || showType == 'wxpay'}}">
- <view class="case_view">
- <van-icon name='https://file-cloud.fmode.cn/MldI5PBNt7/20211009/587mmm110026.png' size='80rpx'></van-icon>
- <text class='txt'>微信支付</text>
- </view>
- <van-radio-group value="{{ radio }}" bind:change="onChange">
- <van-radio name="wxpay" />
- </van-radio-group>
- </view>
- <view class='case' wx:if="{{showType == 'all' || showType == 'balancepay'}}">
- <view class="case_view">
- <van-icon name='https://file-cloud.fmode.cn/MldI5PBNt7/20211009/431f8p110047.png' size='80rpx'></van-icon>
- <text class='txt'>{{balanceTitle}}支付</text>
- </view>
- <van-radio-group value="{{ radio }}" bind:change="onChange">
- <van-radio name="balance" />
- </van-radio-group>
- </view>
- <view class='case' wx:if="{{showBonus}}">
- <view class="case_view">
- <van-icon name='https://file-cloud.fmode.cn/bonus1.png' size='80rpx'></van-icon>
- <text class='txt'>公益金支付</text>
- </view>
- <van-radio-group value="{{ radio }}" bind:change="onChange">
- <van-radio name="bonus" />
- </van-radio-group>
- </view>
- </view>
- <view style="width:100%;padding:0 20rpx">
- <van-button type="primary" block bindtap="pay">确认支付</van-button>
- </view>
- </view>
- </view>
- <van-toast id="van-toast" />
|