withdrawal.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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">
  9. <view class="text_style3">中国招商银行</view>
  10. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  11. </view>
  12. </view>
  13. <view class="cell1">
  14. <view class="text_style2">提现金额</view>
  15. <u-input v-model="value" placeholder="请输入提现金额" border="bottom" fontSize="20" @change="change">
  16. <view slot="prefix" class="text_style2">¥</view>
  17. <template slot="suffix">
  18. <view class="text1" @click="all">全部提现</view>
  19. </template>
  20. </u-input>
  21. </view>
  22. <view class="cell1 hflex acenter jbetween">
  23. <view class="text_style1">提现手续费</view>
  24. <view class="text_style2">¥{{service_money}}</view>
  25. </view>
  26. <view class="cell1 hflex acenter jbetween">
  27. <view class="text_style1">实际到账金额</view>
  28. <view class="text_style2">¥{{amount}}</view>
  29. </view>
  30. <view class="bottom">
  31. <view class="btn" @click="withdraw">立即提现</view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. import $api from '@/static/js/api.js'
  38. var that = ''
  39. export default {
  40. data() {
  41. return {
  42. money: '1008.06',
  43. value: '',
  44. service: 0.01,
  45. service_money: 0,
  46. amount: 0,
  47. }
  48. },
  49. onLoad() {
  50. that = this
  51. },
  52. methods: {
  53. // 全部体系那
  54. all() {
  55. that.value = that.money
  56. that.service_money = (Number(that.value) * that.service).toFixed(2)
  57. that.amount = (that.value - that.service_money).toFixed(2)
  58. },
  59. // 输入框发生改变
  60. change(e) {
  61. console.log(typeof(e));
  62. that.value = e
  63. that.service_money = (Number(that.value) * that.service).toFixed(2)
  64. that.amount = (that.value - that.service_money).toFixed(2)
  65. },
  66. // 立即提现
  67. withdraw() {
  68. if(that.value > 0) {
  69. } else {
  70. $api.info("请输入提现金额")
  71. }
  72. }
  73. },
  74. }
  75. </script>
  76. <style lang="scss" scoped>
  77. .content::v-deep {
  78. padding: 0 30rpx;
  79. .box {
  80. margin: 32rpx 0 20rpx;
  81. .text_style1 {
  82. font-size: 30rpx;
  83. color: #666;
  84. }
  85. .money {
  86. font-size: 60rpx;
  87. color: #222;
  88. margin: 20rpx 0;
  89. }
  90. .text_style2 {
  91. font-size: 28rpx;
  92. color: #222;
  93. }
  94. .cell {
  95. padding: 32rpx 0;
  96. border-bottom: 1rpx solid #f3f3f3;
  97. .text_style3 {
  98. font-size: 24rpx;
  99. color: #222;
  100. }
  101. }
  102. .cell1 {
  103. margin: 32rpx 0;
  104. .u-input {
  105. width: 100% !important;
  106. height: 104rpx !important;
  107. font-size: 60rpx !important;
  108. box-sizing: border-box;
  109. // padding: 30rpx 48rpx !important;
  110. margin: 26rpx 0;
  111. }
  112. .text1 {
  113. font-size: 26rpx;
  114. color: #506dff;
  115. }
  116. }
  117. .bottom {
  118. margin-top: 100rpx;
  119. .btn {
  120. width: 100%;
  121. height: 84rpx;
  122. border-radius: 48rpx;
  123. background-color: #506dff;
  124. text-align: center;
  125. line-height: 84rpx;
  126. font-size: 36rpx;
  127. color: #fff;
  128. }
  129. }
  130. }
  131. }
  132. </style>