tixian.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. }, 800)
  85. } else {
  86. this.$u.toast(res.msg)
  87. }
  88. })
  89. },
  90. getdata() {
  91. getBank().then(res => {
  92. this.bankdata = res.data || {}
  93. })
  94. // index().then(res => {
  95. // this.money = res.data.money || 0
  96. // })
  97. },
  98. }
  99. }
  100. </script>
  101. <style lang="scss" scoped>
  102. .tixian {
  103. height: 100vh;
  104. background: #F3F3F3;
  105. padding: 20rpx 24rpx 0 24rpx;
  106. box-sizing: border-box;
  107. .right {
  108. font-size: 32rpx;
  109. font-family: PingFangSC-Regular, PingFang SC;
  110. font-weight: 400;
  111. color: #0C66C2;
  112. }
  113. .tixian-btn {
  114. width: 702rpx;
  115. line-height: 92rpx;
  116. background: #0C66C2;
  117. border-radius: 12rpx;
  118. margin: 60rpx auto;
  119. text-align: center;
  120. font-size: 34rpx;
  121. font-family: PingFangSC-Medium, PingFang SC;
  122. font-weight: 500;
  123. color: #FFFFFF;
  124. }
  125. .tixian-box {
  126. width: 702rpx;
  127. background: #FFFFFF;
  128. border-radius: 20rpx;
  129. margin: 20rpx auto;
  130. padding: 0 24rpx;
  131. box-sizing: border-box;
  132. .box-down {
  133. height: 90rpx;
  134. text:first-child {
  135. font-size: 26rpx;
  136. font-family: SFPro-Regular, SFPro;
  137. font-weight: 400;
  138. color: #222222;
  139. }
  140. text:last-child {
  141. font-size: 26rpx;
  142. font-family: PingFangSC-Regular, PingFang SC;
  143. font-weight: 400;
  144. color: #0C66C2;
  145. }
  146. }
  147. .box-input {
  148. height: 145rpx;
  149. border-bottom: 2rpx solid #F0F0F0;
  150. text {
  151. font-size: 72rpx;
  152. font-family: PingFangSC-Regular, PingFang SC;
  153. font-weight: 400;
  154. color: #222222;
  155. margin-right: 28rpx;
  156. }
  157. input {
  158. height: 145rpx;
  159. flex: 1;
  160. font-size: 72rpx;
  161. }
  162. }
  163. .box-title {
  164. font-size: 32rpx;
  165. font-family: PingFangSC-Regular, PingFang SC;
  166. font-weight: 400;
  167. color: #222222;
  168. padding-top: 32rpx;
  169. }
  170. }
  171. .tixian-header {
  172. width: 702rpx;
  173. height: 204rpx;
  174. background: #FFFFFF;
  175. border-radius: 20rpx;
  176. margin: 20rpx auto;
  177. padding: 32rpx 24rpx 42rpx 24rpx;
  178. box-sizing: border-box;
  179. text:first-child {
  180. font-size: 32rpx;
  181. font-family: PingFangSC-Regular, PingFang SC;
  182. font-weight: 400;
  183. color: #222222;
  184. }
  185. text:last-child {
  186. font-size: 32rpx;
  187. font-family: SFPro-Regular, SFPro;
  188. font-weight: 400;
  189. color: #222222;
  190. }
  191. }
  192. }
  193. page {
  194. background-color: #F3F3F3;
  195. }
  196. </style>