tixian.vue 3.6 KB

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