Withdrawal.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view class="content">
  3. <view class="card">
  4. <view class="money-num">
  5. {{info.money}}
  6. </view>
  7. <view class="money-text">
  8. 可提现金额
  9. </view>
  10. <view class="title">
  11. 提现金额
  12. </view>
  13. <view class="money-input row">
  14. <view class="icon">¥</view>
  15. <input type="number" class="input" v-model="money" />
  16. <view class="all">全部</view>
  17. </view>
  18. </view>
  19. <view class="bottom-btn">
  20. <view class="buttom-dom" @click="push">
  21. 确认
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. // 提现金额
  31. money:0,
  32. // 用户信息
  33. info: {}
  34. }
  35. },
  36. onLoad() {
  37. this.getUserInfo()
  38. },
  39. methods: {
  40. // 获取可提现金额
  41. getUserInfo(){
  42. this.request("/user/index",{},"POST").then(res=>{
  43. if(res.code === 1){
  44. this.info = res.data
  45. }
  46. })
  47. },
  48. // 点击充值
  49. push(){
  50. if(this.money <1){
  51. this.$u.toast('提现金额不能为0')
  52. return false;
  53. }
  54. this.request("/user_money_controller/take_cash",{money:this.money},"POST").then(res=>{
  55. if(res.code === 1){
  56. this.$u.toast('提现成功')
  57. this.getUserInfo()
  58. this.money = 0
  59. }
  60. })
  61. }
  62. }
  63. }
  64. </script>
  65. <style lang="scss">
  66. .content {
  67. padding-top: 40rpx;
  68. }
  69. .card {
  70. background-color: #FFFFFF;
  71. width: 93%;
  72. margin: 0 auto;
  73. padding: 30rpx;
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. justify-content: space-around;
  78. .money-num {
  79. width: 100%;
  80. text-align: center;
  81. font-weight: bold;
  82. font-size: 50rpx;
  83. }
  84. .money-text {
  85. color: #999;
  86. }
  87. .title {
  88. width: 100%;
  89. }
  90. .money-input {
  91. border-bottom: 1rpx #eee solid;
  92. width: 100%;
  93. padding: 20rpx;
  94. margin-bottom: 50rpx;
  95. .icon {
  96. width: 10%;
  97. }
  98. .input {
  99. width: 70%;
  100. }
  101. .all {
  102. width: 20%;
  103. text-align: center;
  104. color: #F6B301;
  105. }
  106. }
  107. }
  108. .bottom-btn {
  109. position: fixed;
  110. bottom: 0;
  111. width: 100vw;
  112. height: 10vh;
  113. background-color: #FFFFFF;
  114. display: flex;
  115. flex-direction: column;
  116. align-items: center;
  117. justify-content: center;
  118. .buttom-dom {
  119. height: 80rpx;
  120. width: 93%;
  121. background-color: #F6B301;
  122. color: #FFFFFF;
  123. text-align: center;
  124. line-height: 80rpx;
  125. color: #FFFFFF;
  126. border-radius: 80rpx;
  127. }
  128. }
  129. </style>