withdrawal.vue 6.7 KB

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