123456789101112131415161718192021222324252627282930313233343536373839 |
- <view class="app">
- <view class="price-box">
- <text>支付金额</text>
- <text class="price">{{money}}</text>
- </view>
- <view class="pay-type-list">
- <view bindtap="__e" class="type-item b-b" data-event-opts="{{[ [ 'tap',[ [ 'changePayType',[1] ] ] ] ]}}">
- <text class="icon iconfont iconweixin"></text>
- <view class="con">
- <text class="tit">微信支付</text>
- <text>推荐使用微信支付</text>
- </view>
- <label class="radio">
- <radio checked="{{payType==1}}" color="#5dbc7c" value=""></radio>
- </label>
- </view>
- <view bindtap="__e" class="type-item" data-event-opts="{{[ [ 'tap',[ [ 'changePayType',[3] ] ] ] ]}}" hidden="{{!(goodsType===0)}}">
- <text class="icon iconfont iconyue"></text>
- <view class="con">
- <text class="tit">余额支付</text>
- <text>{{'可用余额 ¥'+now_money}}</text>
- </view>
- <label class="radio">
- <radio checked="{{payType==3}}" color="#5dbc7c" value=""></radio>
- </label>
- </view>
- <view bindtap="__e" class="type-item" data-event-opts="{{[ [ 'tap',[ [ 'changePayType',[4] ] ] ] ]}}" hidden="{{!(goodsType===0)}}">
- <text class="icon iconfont" style="color:#00BCD4;"></text>
- <view class="con">
- <text class="tit">线下支付</text>
- <text></text>
- </view>
- <label class="radio">
- <radio checked="{{payType==4}}" color="#5dbc7c" value=""></radio>
- </label>
- </view>
- </view>
- <text bindtap="__e" class="{{['mix-btn',payLoding?'clickbg':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'e0',['$event'] ] ] ] ]}}">确认支付</text>
- </view>
|