recharge.wxml 1.3 KB

123456789101112131415161718192021222324252627
  1. <view class="content">
  2. <view class="row-box">
  3. <view class="title">充值金额</view>
  4. <view class="row">
  5. <text class="tit">¥</text>
  6. <input bindinput="__e" class="input" data-event-opts="{{[ [ 'input',[ [ '__set_model',[ '','money','$event',[] ] ] ] ] ]}}" placeholder="请输入充值金额" placeholderClass="placeholder" type="number" value="{{money}}"></input>
  7. </view>
  8. </view>
  9. <view class="list" wx:if="{{!weichatBsrowser}}">
  10. <radio-group bindchange="__e" data-event-opts="{{[ [ 'change',[ [ 'tabRadio',['$event'] ] ] ] ]}}">
  11. <label>
  12. <view class="box">
  13. <view class="icon iconfont iconweixin1"></view>
  14. <view class="title-box">
  15. <view class="title">
  16. <text>微信充值</text>
  17. </view>
  18. </view>
  19. <view class="right">
  20. <radio checked="{{true}}" color=" #5dbc7c" value="weixin"></radio>
  21. </view>
  22. </view>
  23. </label>
  24. </radio-group>
  25. </view>
  26. <button bindtap="__e" class="{{['add-btn up',payLoding?'active-bg':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'e0',['$event'] ] ] ] ]}}">确认充值</button>
  27. </view>