tixian.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <view class="tixian">
  3. <view class="tixian-header u-flex-col u-row-between" style="background: #fff;">
  4. <text>到账银行卡</text>
  5. <!-- <text @click="bangding">{{bankdata.bank_name ? `${bankdata.bank_name}(${bankdata.bank_no.substring(bankdata.bank_no.length - 4)})` : '请绑定银行卡'}}</text> -->
  6. </view>
  7. <view class="tixian-box" style="background: #fff;">
  8. <view class="box-title">
  9. 提现金额
  10. </view>
  11. <view class="box-input u-flex u-row-between">
  12. <view class="u-flex">
  13. <text>¥</text>
  14. <input type="number" v-model="price" style="width: 400rpx;">
  15. </view>
  16. <view class="right">
  17. 重新选择
  18. </view>
  19. </view>
  20. </view>
  21. <view class="tixian-btn" @click="tixian">
  22. 确认提现
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import {
  28. withdraw,
  29. getBank,
  30. index
  31. } from "@/units/inquire.js"
  32. export default {
  33. data() {
  34. return {
  35. bankdata: {},
  36. money: '',
  37. price: '',
  38. }
  39. },
  40. onShow() {
  41. this.getdata()
  42. },
  43. methods: {
  44. tixian() {
  45. if (!this.price) {
  46. this.$u.toast("请输入提现金额")
  47. return
  48. }
  49. if (this.price > this.money) {
  50. this.$u.toast("提现金额不足")
  51. return
  52. }
  53. uni.showLoading({
  54. mask: true,
  55. title: "请稍后"
  56. })
  57. //发起提现
  58. // withdraw({
  59. // })
  60. this.$u.post('/api/hr.user/withdraw', {
  61. amount: this.price
  62. }).then(res => {
  63. if (res.code == 1) {
  64. this.$u.toast("发起提现成功")
  65. this.price = ''
  66. setTimeout(() => {
  67. this.getdata()
  68. }, 800)
  69. } else {
  70. this.$u.toast(res.msg)
  71. }
  72. })
  73. },
  74. all() {
  75. this.price = this.money || ''
  76. },
  77. getdata() {
  78. getBank().then(res => {
  79. this.bankdata = res.data || {}
  80. })
  81. index().then(res => {
  82. this.money = res.data.money || 0
  83. })
  84. },
  85. }
  86. }
  87. </script>
  88. <style lang="scss" scoped>
  89. .tixian {
  90. height: 100vh;
  91. background: #F3F3F3;
  92. padding: 20rpx 24rpx 0 24rpx;
  93. box-sizing: border-box;
  94. .right {
  95. font-size: 32rpx;
  96. font-family: PingFangSC-Regular, PingFang SC;
  97. font-weight: 400;
  98. color: #0C66C2;
  99. }
  100. .tixian-btn {
  101. width: 702rpx;
  102. line-height: 92rpx;
  103. background: #0C66C2;
  104. border-radius: 12rpx;
  105. margin: 60rpx auto;
  106. text-align: center;
  107. font-size: 34rpx;
  108. font-family: PingFangSC-Medium, PingFang SC;
  109. font-weight: 500;
  110. color: #FFFFFF;
  111. }
  112. .tixian-box {
  113. width: 702rpx;
  114. background: #FFFFFF;
  115. border-radius: 20rpx;
  116. margin: 20rpx auto;
  117. padding: 0 24rpx;
  118. box-sizing: border-box;
  119. .box-down {
  120. height: 90rpx;
  121. text:first-child {
  122. font-size: 26rpx;
  123. font-family: SFPro-Regular, SFPro;
  124. font-weight: 400;
  125. color: #222222;
  126. }
  127. text:last-child {
  128. font-size: 26rpx;
  129. font-family: PingFangSC-Regular, PingFang SC;
  130. font-weight: 400;
  131. color: #0C66C2;
  132. }
  133. }
  134. .box-input {
  135. height: 145rpx;
  136. border-bottom: 2rpx solid #F0F0F0;
  137. text {
  138. font-size: 72rpx;
  139. font-family: PingFangSC-Regular, PingFang SC;
  140. font-weight: 400;
  141. color: #222222;
  142. margin-right: 28rpx;
  143. }
  144. input {
  145. height: 145rpx;
  146. flex: 1;
  147. font-size: 72rpx;
  148. }
  149. }
  150. .box-title {
  151. font-size: 32rpx;
  152. font-family: PingFangSC-Regular, PingFang SC;
  153. font-weight: 400;
  154. color: #222222;
  155. padding-top: 32rpx;
  156. }
  157. }
  158. .tixian-header {
  159. width: 702rpx;
  160. height: 204rpx;
  161. background: #FFFFFF;
  162. border-radius: 20rpx;
  163. margin: 20rpx auto;
  164. padding: 32rpx 24rpx 42rpx 24rpx;
  165. box-sizing: border-box;
  166. text:first-child {
  167. font-size: 32rpx;
  168. font-family: PingFangSC-Regular, PingFang SC;
  169. font-weight: 400;
  170. color: #222222;
  171. }
  172. text:last-child {
  173. font-size: 32rpx;
  174. font-family: SFPro-Regular, SFPro;
  175. font-weight: 400;
  176. color: #222222;
  177. }
  178. }
  179. }
  180. page {
  181. background-color: #F3F3F3;
  182. }
  183. </style>