extract.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <view class="box">
  3. <view class="header">
  4. <view class="title">支付宝提现</view>
  5. <view class="moneyView">
  6. <text class="icon">¥</text>
  7. <input type="digit" class="moneyInput" placeholder-style="color:#999999; font-size:30rpx"
  8. placeholder="请输入提现金额" v-model="money" />
  9. <view class="allBtn" @click="allBtn">全部提现</view>
  10. </view>
  11. <view class="zongMoney">可提现金额:¥{{okMoney}}</view>
  12. <view class="line"></view>
  13. <view class="name">
  14. <view class="leftTitle">姓名</view>
  15. <input type="text" class="Input" placeholder-style="color:#999999; font-size:30rpx" placeholder="支付宝实名"
  16. v-model="name" />
  17. </view>
  18. <view class="line"></view>
  19. <view class="name">
  20. <view class="leftTitle" style="margin-right: 60rpx;">支付宝</view>
  21. <input type="text" class="Input" placeholder-style="color:#999999; font-size:30rpx" placeholder="支付宝账户"
  22. v-model="account" />
  23. </view>
  24. </view>
  25. <view class="tishi" style="padding: 20rpx 44rpx;">支付宝账号或姓名输入错误将无法提现到账</view>
  26. <view class="sureBtn" @click="sure">确认提现</view>
  27. <view class="tishi">温馨提示</view>
  28. <view class="tishi">1、使用支付宝提现需要您已注册支付宝并在支付宝中实名认证过。</view>
  29. <view class="tishi">2、支付宝账号是您注册支付宝的手机号或者邮箱号,您可登录支付宝查看。</view>
  30. <view class="tishi">3、如您在提现中遇到其他问题,请在「我的」页面找到「联系我们」。</view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. okMoney:'',
  38. money: '',
  39. name: '',
  40. account: '',
  41. }
  42. },
  43. onLoad(opt) {
  44. this.okMoney = opt.okMoney
  45. },
  46. methods: {
  47. allBtn(){
  48. this.money = this.okMoney
  49. },
  50. sure(){
  51. if (this.money > this.okMoney) {
  52. uni.showToast({
  53. title: '提现金额不能大于可提现金额',
  54. icon:'none',
  55. duration: 3000,
  56. });
  57. return;
  58. }
  59. this.postData();
  60. },
  61. postData() {
  62. uni.showLoading({
  63. title: '提现中'
  64. })
  65. let url = 'worldKeepCar/worldDistribution/applyWithdrawal',
  66. params = {
  67. money:this.money,
  68. aliName:this.name,
  69. aliPhone:this.account,
  70. }
  71. this.$http(url, params, 'POST').then(res => {
  72. uni.hideLoading();
  73. uni.navigateBack({
  74. })
  75. })
  76. },
  77. }
  78. }
  79. </script>
  80. <style>
  81. .box {
  82. min-height: 100vh;
  83. background: #F4F5F7;
  84. padding-top: 20rpx;
  85. }
  86. .header {
  87. background-color: #FFFFFF;
  88. margin: 0 24rpx;
  89. border-radius: 10rpx;
  90. padding: 30rpx 20rpx;
  91. padding-bottom: 0;
  92. }
  93. .title {
  94. font-size: 30rpx;
  95. color: #3C3C3C;
  96. font-weight: bold;
  97. }
  98. .moneyView {
  99. display: flex;
  100. justify-content: space-between;
  101. align-items: center;
  102. margin: 15rpx 0;
  103. }
  104. .icon {
  105. font-size: 50rpx;
  106. color: #222222;
  107. font-weight: bold;
  108. }
  109. .moneyInput {
  110. font-size: 70rpx;
  111. color: #222222;
  112. font-weight: bold;
  113. flex-grow: 1;
  114. height: 98rpx;
  115. }
  116. .allBtn {
  117. font-size: 26rpx;
  118. color: #FF4F00;
  119. width: 150rpx;
  120. }
  121. .zongMoney {
  122. font-size: 26rpx;
  123. color: #999999;
  124. margin-bottom: 30rpx;
  125. }
  126. .line {
  127. background-color: #EEEEEE;
  128. height: 1rpx;
  129. }
  130. .name {
  131. display: flex;
  132. justify-content: flex-start;
  133. padding: 28rpx 0;
  134. }
  135. .leftTitle {
  136. font-size: 30rpx;
  137. color: #3C3C3C;
  138. margin-right: 90rpx;
  139. }
  140. .Input {
  141. font-size: 30rpx;
  142. color: #333333;
  143. }
  144. .tishi {
  145. padding: 0 44rpx;
  146. font-size: 26rpx;
  147. color: #999999;
  148. line-height: 1.5;
  149. }
  150. .sureBtn {
  151. width: 690rpx;
  152. margin: 20rpx 30rpx;
  153. border-radius: 37rpx;
  154. height: 74rpx;
  155. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  156. color: #FFFFFF;
  157. font-size: 30rpx;
  158. text-align: center;
  159. line-height: 74rpx;
  160. }
  161. </style>