withdraw.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="top">
  5. <view class="text_style1">可以提现金额</view>
  6. <view class="money">¥{{money}}</view>
  7. </view>
  8. <view class="hflex acenter jbetween cell" style="margin-top: 184rpx;">
  9. <view class="text_style2">提现至</view>
  10. <view class="hflex acenter" @click="open">
  11. <view class="text_style3" v-if="bank.length > 0">{{bank[active].number}}</view>
  12. <view class="text_style3" v-else>选择银行卡</view>
  13. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  14. </view>
  15. </view>
  16. <view class="cell1">
  17. <view class="text_style2">提现金额</view>
  18. <u-input v-model="value" placeholder="请输入提现金额" border="bottom" fontSize="20" @change="change">
  19. <view slot="prefix" class="text_style2">¥</view>
  20. <template slot="suffix">
  21. <view class="text1" @click="all">全部提现</view>
  22. </template>
  23. </u-input>
  24. </view>
  25. <view class="cell1 hflex acenter jbetween">
  26. <view class="text_style1">提现手续费</view>
  27. <view class="text_style2">¥{{service_money}}</view>
  28. </view>
  29. <view class="cell1 hflex acenter jbetween">
  30. <view class="text_style1">实际到账金额</view>
  31. <view class="text_style2">¥{{amount}}</view>
  32. </view>
  33. <view class="bottom">
  34. <view class="btn" @click="withdraw">立即提现</view>
  35. </view>
  36. </view>
  37. <u-popup :show="show" round="20" bgColor="#F4F4F4" :closeable="true" closeIconPos="top-left" mode="bottom" @close="close" :safeAreaInsetBottom="false">
  38. <view class="popup_bg">
  39. <view class="title">选择银行卡</view>
  40. <view class="add hflex acenter jbetween" @click="add">
  41. <view class="hflex acenter">
  42. <u-icon name="plus-circle" color="#506DFF" size="19"></u-icon>
  43. <view class="add_text">去添加</view>
  44. </view>
  45. <u-icon name="arrow-right" color="#9D9D9D" size="12"></u-icon>
  46. </view>
  47. <view class="list">
  48. <block v-for="(item,index) in bank" :key="index">
  49. <view class="hflex acenter jbetween item" @click="select(index)">
  50. <view class="hflex acenter">
  51. <view class="bank_name">{{item.bank}}({{item.number}})</view>
  52. </view>
  53. <view v-if="active == index">
  54. <u-icon name="checkbox-mark" color="#506DFF" size="14"></u-icon>
  55. </view>
  56. </view>
  57. </block>
  58. </view>
  59. </view>
  60. </u-popup>
  61. </view>
  62. </template>
  63. <script>
  64. import $api from '@/static/js/api.js'
  65. var that = ''
  66. export default {
  67. data() {
  68. return {
  69. money: '0.00',
  70. value: '',
  71. service: 0,
  72. service_money: 0,
  73. amount: 0,
  74. bank: [
  75. ],
  76. active: -1,
  77. max_money: 10000,
  78. min_money: 1,
  79. show: false
  80. }
  81. },
  82. onLoad(options) {
  83. that = this
  84. that.money = options.money
  85. var ser = Number(options.service)
  86. that.service = ser / 100
  87. that.getList()
  88. // that.getData()
  89. },
  90. methods: {
  91. getList() {
  92. $api.req({
  93. url: '/data/api.business.User/user_bank',
  94. method: 'POST'
  95. }, function(res) {
  96. if(res.code == 1) {
  97. that.bank = res.data.list
  98. that.active = 0
  99. if(that.bank.length > 0) {
  100. for(var i=0;i<that.bank.length;i++) {
  101. that.bank[i].number = that.bank[i].number.substr(-4)
  102. }
  103. }
  104. }
  105. })
  106. },
  107. getData() {
  108. $api.req({
  109. url: '/data/api.auth.Center/getwithinfo',
  110. method: 'POST',
  111. }, function(res) {
  112. if(res.code == 1) {
  113. that.money = res.data.money
  114. that.max_money = res.data.withdraw_max_price
  115. that.min_money = res.data.withdraw_min_price
  116. that.service = res.data.poundage_proportion / 100
  117. }
  118. })
  119. },
  120. // 全部体系那
  121. all() {
  122. that.value = that.money
  123. that.service_money = (Number(that.value) * that.service).toFixed(2)
  124. that.amount = (that.value - that.service_money).toFixed(2)
  125. },
  126. // 输入框发生改变
  127. change(e) {
  128. that.value = e
  129. that.service_money = (Number(that.value) * that.service).toFixed(2)
  130. that.amount = (that.value - that.service_money).toFixed(2)
  131. },
  132. // 立即提现
  133. withdraw() {
  134. if(that.active == -1) {
  135. $api.info("请先选择银行卡")
  136. return
  137. }
  138. if(that.value > 0) {
  139. if(Number(that.value) > Number(that.max_money) || Number(that.value) < Number(that.min_money)) {
  140. $api.info('请选择在'+that.min_money+'与'+that.max_money+'之间')
  141. } else {
  142. $api.req({
  143. url: '/data/api.business.User/user_withdrawal',
  144. method: 'POST',
  145. data: {
  146. money: that.value,
  147. bank_number: that.bank[that.active].number
  148. }
  149. },function(res) {
  150. if(res.code == 1) {
  151. $api.info(res.info)
  152. $api.jump(-1)
  153. }
  154. })
  155. }
  156. } else {
  157. $api.info("请输入提现金额")
  158. }
  159. },
  160. open() {
  161. that.show = true
  162. },
  163. close() {
  164. that.show = false
  165. },
  166. add() {
  167. $api.jump('/pages/mine/wallet/add')
  168. },
  169. select(index) {
  170. that.active = index
  171. that.close()
  172. that.bankName = that.bank[index].name
  173. }
  174. },
  175. }
  176. </script>
  177. <style lang="scss" scoped>
  178. .content::v-deep {
  179. padding: 0 30rpx;
  180. position: relative;
  181. .box {
  182. margin: 32rpx 0 20rpx;
  183. .top {
  184. position: absolute;
  185. left: 0;
  186. top: 0;
  187. width: 750rpx;
  188. padding: 32rpx 30rpx 20rpx;
  189. background: linear-gradient(360deg, #F4F4F4 0%, #F2F6FC 100%);
  190. }
  191. .text_style1 {
  192. font-size: 30rpx;
  193. color: #666;
  194. }
  195. .money {
  196. font-size: 60rpx;
  197. color: #222;
  198. margin: 20rpx 0;
  199. }
  200. .text_style2 {
  201. font-size: 28rpx;
  202. color: #222;
  203. }
  204. .cell {
  205. padding: 32rpx 0;
  206. border-bottom: 1rpx solid #f3f3f3;
  207. .text_style3 {
  208. font-size: 24rpx;
  209. color: #222;
  210. padding-right: 8rpx;
  211. }
  212. }
  213. .cell1 {
  214. margin: 32rpx 0;
  215. .u-input {
  216. width: 100% !important;
  217. height: 104rpx !important;
  218. font-size: 60rpx !important;
  219. box-sizing: border-box;
  220. // padding: 30rpx 48rpx !important;
  221. margin: 26rpx 0;
  222. }
  223. .text1 {
  224. font-size: 26rpx;
  225. color: #506dff;
  226. }
  227. }
  228. .bottom {
  229. margin-top: 100rpx;
  230. .btn {
  231. width: 100%;
  232. height: 84rpx;
  233. border-radius: 48rpx;
  234. background-color: #506dff;
  235. text-align: center;
  236. line-height: 84rpx;
  237. font-size: 36rpx;
  238. color: #fff;
  239. }
  240. }
  241. }
  242. .popup_bg {
  243. width: 100%;
  244. background: #F4F4F4;
  245. box-sizing: border-box;
  246. padding: 0 30rpx 150rpx;
  247. border-radius: 40rpx 40rpx 0px 0px;
  248. .title {
  249. width: 100%;
  250. text-align: center;
  251. font-size: 36rpx;
  252. font-weight: 400;
  253. color: #000000;
  254. line-height: 50rpx;
  255. padding: 32rpx 0;
  256. }
  257. .add {
  258. width: 100%;
  259. height: 96rpx;
  260. background: #FFFFFF;
  261. border-radius: 20rpx;
  262. margin: 12rpx 0 20rpx;
  263. box-sizing: border-box;
  264. padding: 30rpx 20rpx;
  265. .add_text {
  266. font-size: 32rpx;
  267. font-weight: 400;
  268. color: #555555;
  269. line-height: 44rpx;
  270. padding-left: 24rpx;
  271. }
  272. }
  273. .list {
  274. background: #FFFFFF;
  275. border-radius: 10px;
  276. box-sizing: border-box;
  277. padding: 0 20rpx;
  278. .item {
  279. padding: 40rpx 0;
  280. border-bottom: 1rpx solid #F6F6F6;
  281. .bank_icon {
  282. width: 40rpx;
  283. height: 40rpx;
  284. }
  285. .bank_name {
  286. font-weight: 400;
  287. color: #555555;
  288. line-height: 40rpx;
  289. }
  290. }
  291. .item:nth-last-child(1) {
  292. border: none;
  293. }
  294. }
  295. }
  296. }
  297. </style>