withdraw.vue 7.0 KB

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