tixian.vue 4.3 KB

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