recharge.wxml 1.2 KB

123456789101112131415161718192021222324
  1. <!--余额充值-->
  2. <view class="recharge">
  3. <image src="http://resource.weilaigo.l4j.cn/czBackground1.png" style="width:691rpx;height:394rpx;margin-top:45rpx;"></image>
  4. <view class="hint">充值金额:</view>
  5. <view class="rechargeCon">
  6. <view class="amount" >
  7. <view wx:for="{{moneyList}}" wx:key="{{index}}" class="{{currentNow==index?'choice':''}}" bindtap="choice" data-idx="{{index}}">
  8. <text>{{index==Index?'充':''}}{{item.recharge_money}}元</text>
  9. <text wx:if="{{item.give_money!=0}}">送{{item.give_money}}元</text>
  10. </view>
  11. </view>
  12. <view class="inp">
  13. <input type="text" placeholder="自定义金额(1—1000内整数)" placeholder-style="color:#ddd;font-size:24rpx;" bindfocus="enter" bindinput="ckInp" value="{{inputValue}}" type="number"></input>
  14. </view>
  15. <!-- <view class="payBtn" bindtap="pay">
  16. 立即支付
  17. </view> -->
  18. <image src="/img/button.png" style="width:615rpx;height:128rpx;" bindtap="pay" class="payBtn"></image>
  19. <view class="deal" bindtap="agreement">支付即表示已阅读并同意《法律充值条约政策》</view>
  20. <view class="bottom">
  21. <text>注:充值金额暂不支持提现~</text>
  22. </view>
  23. </view>
  24. </view>