recharge.wxml 1.5 KB

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