tixian.vue 4.1 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_type_name}}</text>
  11. (
  12. <!-- <text>1234</text> -->
  13. <text>{{bankdata.bank_no.slice(-4)}}</text>
  14. )
  15. </view>
  16. </view>
  17. <u-icon name="arrow-right" size="12"></u-icon>
  18. </view>
  19. </view>
  20. <view class="tixian-box" style="background: #fff;">
  21. <view class="box-title">
  22. 提现金额
  23. </view>
  24. <view class="box-input u-flex u-row-between">
  25. <view class="u-flex">
  26. <text>¥</text>
  27. <input :disabled="true" type="number" v-model="money" style="width: 400rpx;">
  28. </view>
  29. <view class="right" @click="return1">
  30. 重新选择
  31. </view>
  32. </view>
  33. </view>
  34. <view class="tixian-btn" @click="tixian">
  35. 确认提现
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import {
  41. withdraw,
  42. getBank,
  43. index
  44. } from "@/units/inquire.js"
  45. export default {
  46. data() {
  47. return {
  48. bankdata: {},
  49. money: '',
  50. price: '',
  51. current: "",
  52. }
  53. },
  54. onLoad(options) {
  55. this.money = options.money
  56. this.current = options.current
  57. this.ids = options.ids
  58. console.log("ppppppppppp", options);
  59. },
  60. onShow() {
  61. this.getdata()
  62. },
  63. methods: {
  64. return1() {
  65. uni.navigateTo({
  66. url: "/pagesD/tixian1?current=" + this.current
  67. })
  68. },
  69. tixian() {
  70. uni.showLoading({
  71. mask: true,
  72. title: "请稍后"
  73. })
  74. //发起提现
  75. withdraw({
  76. ids: this.ids,
  77. }).then(res => {
  78. if (res.code == 1) {
  79. this.$u.toast("发起提现成功")
  80. this.money = ''
  81. setTimeout(() => {
  82. this.getdata()
  83. uni.navigateBack()
  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>