1234567891011121314151617181920212223242526272829303132 |
- <!--余额充值-->
- <view class="recharge">
- <view wx:if="{{title=='小白闪现出行'}}" class="left_top">
- <text>账户充值</text>
- <text>{{title}} 伴你而行</text>
- </view>
- <view wx:if="{{title=='闪现出行'}}" class="left_top">
- <text>账户充值</text>
- <text>{{title}} 伴你而行</text>
- </view>
- <image src="/img/chongzhi.png" style="width:690rpx;height:327rpx;margin-top:80rpx;"></image>
- <view class="hint">充值金额:</view>
- <view class="rechargeCon">
- <view class="amount" >
- <view wx:for="{{moneyList}}" wx:key="{{index}}" class="{{currentNow==index?'choice':''}}" bindtap="choice" data-idx="{{index}}">
- <text>{{index==Index?'充':''}}{{item.recharge_money}}元</text>
- <text wx:if="{{item.give_money!=0}}">送{{item.give_money}}元</text>
- </view>
- </view>
- <view class="inp">
- <input type="text" placeholder="自定义金额(1—100内整数)" placeholder-style="color:#ddd;font-size:24rpx;" bindfocus="enter" bindinput="ckInp" value="{{inputValue}}" type="number"></input>
- </view>
- <!-- <view class="payBtn" bindtap="pay">
- 立即支付
- </view> -->
- <image src="/img/button.png" style="width:615rpx;height:128rpx;" bindtap="pay" class="payBtn"></image>
- <view class="deal" bindtap="agreement">支付即表示已阅读并同意《法律充值条约政策》</view>
- <view class="bottom">
- <text>注:充值金额暂不支持提现~</text>
- </view>
- </view>
- </view>
|