withdraw.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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. console.log('ser',ser);
  87. that.service = ser / 100
  88. console.log('service',that.service);
  89. that.getList()
  90. // that.getData()
  91. },
  92. methods: {
  93. getList() {
  94. $api.req({
  95. url: '/data/api.business.User/user_bank',
  96. method: 'POST'
  97. }, function(res) {
  98. if(res.code == 1) {
  99. that.bank = res.data.list
  100. /* var c = ''
  101. if(that.bank.length > 0) {
  102. for(var i=0;i<that.bank.length;i++) {
  103. c = that.bank[i].number.substr(-4)
  104. that.$set(that.bank[i],'number',c)
  105. }
  106. } */
  107. }
  108. })
  109. },
  110. getData() {
  111. $api.req({
  112. url: '/data/api.auth.Center/getwithinfo',
  113. method: 'POST',
  114. }, function(res) {
  115. if(res.code == 1) {
  116. that.money = res.data.money
  117. that.max_money = res.data.withdraw_max_price
  118. that.min_money = res.data.withdraw_min_price
  119. that.service = res.data.poundage_proportion / 100
  120. }
  121. })
  122. },
  123. // 全部体系那
  124. all() {
  125. that.value = that.money
  126. that.service_money = (Number(that.value) * that.service).toFixed(2)
  127. that.amount = (that.value - that.service_money).toFixed(2)
  128. },
  129. // 输入框发生改变
  130. change(e) {
  131. that.value = e
  132. console.log('1',Number(that.value));
  133. console.log('2',that.service);
  134. console.log((Number(that.value) * that.service));
  135. that.service_money = (Number(that.value) * that.service).toFixed(2)
  136. that.amount = (that.value - that.service_money).toFixed(2)
  137. console.log(that.service_money);
  138. console.log(that.amount);
  139. },
  140. // 立即提现
  141. withdraw() {
  142. if(that.active == -1) {
  143. $api.info("请先选择银行卡")
  144. return
  145. }
  146. if(that.value > 0) {
  147. if(Number(that.value) > Number(that.max_money) || Number(that.value) < Number(that.min_money)) {
  148. $api.info('请选择在'+that.min_money+'与'+that.max_money+'之间')
  149. } else {
  150. $api.req({
  151. url: '/data/api.business.User/user_withdrawal',
  152. method: 'POST',
  153. data: {
  154. money: that.value,
  155. bank_number: that.bank[that.active].number
  156. }
  157. },function(res) {
  158. if(res.code == 1) {
  159. $api.info(res.info)
  160. $api.jump(-1)
  161. }
  162. })
  163. }
  164. } else {
  165. $api.info("请输入提现金额")
  166. }
  167. },
  168. open() {
  169. that.show = true
  170. },
  171. close() {
  172. that.show = false
  173. },
  174. add() {
  175. $api.jump('/pages/mine/wallet/add')
  176. },
  177. select(index) {
  178. that.active = index
  179. that.close()
  180. that.bankName = that.bank[index].name
  181. }
  182. },
  183. }
  184. </script>
  185. <style lang="scss" scoped>
  186. .content::v-deep {
  187. padding: 0 30rpx;
  188. position: relative;
  189. .box {
  190. margin: 32rpx 0 20rpx;
  191. .top {
  192. position: absolute;
  193. left: 0;
  194. top: 0;
  195. width: 750rpx;
  196. padding: 32rpx 30rpx 20rpx;
  197. background: linear-gradient(360deg, #F4F4F4 0%, #F2F6FC 100%);
  198. }
  199. .text_style1 {
  200. font-size: 30rpx;
  201. color: #666;
  202. }
  203. .money {
  204. font-size: 60rpx;
  205. color: #222;
  206. margin: 20rpx 0;
  207. }
  208. .text_style2 {
  209. font-size: 28rpx;
  210. color: #222;
  211. }
  212. .cell {
  213. padding: 32rpx 0;
  214. border-bottom: 1rpx solid #f3f3f3;
  215. .text_style3 {
  216. font-size: 24rpx;
  217. color: #222;
  218. padding-right: 8rpx;
  219. }
  220. }
  221. .cell1 {
  222. margin: 32rpx 0;
  223. .u-input {
  224. width: 100% !important;
  225. height: 104rpx !important;
  226. font-size: 60rpx !important;
  227. box-sizing: border-box;
  228. // padding: 30rpx 48rpx !important;
  229. margin: 26rpx 0;
  230. }
  231. .text1 {
  232. font-size: 26rpx;
  233. color: #506dff;
  234. }
  235. }
  236. .bottom {
  237. margin-top: 100rpx;
  238. .btn {
  239. width: 100%;
  240. height: 84rpx;
  241. border-radius: 48rpx;
  242. background-color: #506dff;
  243. text-align: center;
  244. line-height: 84rpx;
  245. font-size: 36rpx;
  246. color: #fff;
  247. }
  248. }
  249. }
  250. .popup_bg {
  251. width: 100%;
  252. background: #F4F4F4;
  253. box-sizing: border-box;
  254. padding: 0 30rpx 150rpx;
  255. border-radius: 40rpx 40rpx 0px 0px;
  256. .title {
  257. width: 100%;
  258. text-align: center;
  259. font-size: 36rpx;
  260. font-weight: 400;
  261. color: #000000;
  262. line-height: 50rpx;
  263. padding: 32rpx 0;
  264. }
  265. .add {
  266. width: 100%;
  267. height: 96rpx;
  268. background: #FFFFFF;
  269. border-radius: 20rpx;
  270. margin: 12rpx 0 20rpx;
  271. box-sizing: border-box;
  272. padding: 30rpx 20rpx;
  273. .add_text {
  274. font-size: 32rpx;
  275. font-weight: 400;
  276. color: #555555;
  277. line-height: 44rpx;
  278. padding-left: 24rpx;
  279. }
  280. }
  281. .list {
  282. background: #FFFFFF;
  283. border-radius: 10px;
  284. box-sizing: border-box;
  285. padding: 0 20rpx;
  286. .item {
  287. padding: 40rpx 0;
  288. border-bottom: 1rpx solid #F6F6F6;
  289. .bank_icon {
  290. width: 40rpx;
  291. height: 40rpx;
  292. }
  293. .bank_name {
  294. font-weight: 400;
  295. color: #555555;
  296. line-height: 40rpx;
  297. }
  298. }
  299. .item:nth-last-child(1) {
  300. border: none;
  301. }
  302. }
  303. }
  304. }
  305. </style>