时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.5 KiB

  1. <template>
  2. <view class="wrap">
  3. <view class="lf-p-30" style="height: 408rpx;">
  4. <view class="bg-white lf-h-100" style="border-radius: 10rpx;">
  5. <view class="text-black lf-font-28 lf-p-l-30 lf-p-t-30">提取金额</view>
  6. <view class="lf-p-l-20 flex solid-bottom align-center" style="padding-top: 90rpx;">
  7. <text class="text-black lf-font-48 unit"></text>
  8. <!-- <u-input v-model="num" :type="type" :border="border" :height="height" :auto-height="autoHeight"/> -->
  9. <input type="number" @focus="showClear()" v-model="num" class="lf-p-l-10 text-black1" style="width: 80%;padding-right: 30rpx;font-size: 72rpx;height: 100rpx;" />
  10. <view v-if="showClean && num != ''">
  11. <u-icon @click="clearAble()" name="close-circle" color="#999999" size="40"></u-icon>
  12. </view>
  13. </view>
  14. <view class="lf-font-28 lf-color-999 lf-p-t-26 lf-p-l-30" v-if="num==''">
  15. 可用余额
  16. <text>0.00</text>
  17. </view>
  18. <view v-else class="lf-color-price lf-font-28 lf-p-t-26 lf-p-l-30">输入金额超过可用余额</view>
  19. </view>
  20. </view>
  21. <view class="lf-p-l-30 lf-p-r-30 lf-p-b-30" style="height: auto;">
  22. <view class="bg-white lf-h-100 lf-p-30" style="border-radius: 10rpx; box-sizing: border-box;">
  23. <view class="text-black lf-font-28">提现说明</view>
  24. <view class="flex flex-direction justify-around lf-p-t-20">
  25. <view class="lf-font-28" style="color: #555;">
  26. 1提现到账时间为T+1
  27. </view>
  28. <view class="lf-font-28" style="color: #555;">
  29. 2提现最高单笔金额为1000元
  30. </view>
  31. <view class="lf-font-28" style="color: #555;">
  32. 3提现手续费单笔收费10%
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="btn-bottom" style="bottom: 60rpx;">
  38. <view class="padding-lr-lg">
  39. <button class="cu-btn block bg-orange lg" style="border-radius: 42rpx;" @tap="subimitApply()">
  40. <text class="lf-font-32 text-white">提现</text>
  41. </button>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. num: '',
  51. showClean: false
  52. }
  53. },
  54. methods: {
  55. clearAble() {
  56. this.num = ''
  57. this.showClean = false
  58. },
  59. showClear() {
  60. this.showClean = true
  61. }
  62. }
  63. }
  64. </script>
  65. <style>
  66. page{
  67. background-color: #F5F5F5;
  68. }
  69. </style>
  70. <style scoped>
  71. .wrap {
  72. height: 100%;
  73. width: 100%;
  74. background-color: #F5F5F5;
  75. }
  76. .unit{
  77. display: flex;
  78. height: 100rpx;
  79. align-items: flex-end;
  80. box-sizing: border-box;
  81. padding-bottom: 10rpx;
  82. }
  83. </style>