时空网前端
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.

68 lines
1.9 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"></text>
  8. <input type="number" v-model="num" class="lf-p-l-10 text-black1" style="width: 100%;padding-right: 30rpx;font-size: 72rpx;height: 100rpx;" />
  9. </view>
  10. <view class="lf-font-28 lf-color-999 lf-p-t-20 lf-p-l-30" v-if="num==''">
  11. 可用余额
  12. <text>0.00</text>
  13. </view>
  14. <view v-else class="lf-color-price lf-font-28 lf-p-t-20 lf-p-l-30">输入金额超过可用余额</view>
  15. </view>
  16. </view>
  17. <view class="lf-p-l-30 lf-p-r-30 lf-p-b-30" style="height: 300rpx;">
  18. <view class="bg-white lf-h-100" style="border-radius: 10rpx;">
  19. <view class="text-black lf-font-28 lf-p-l-30 lf-p-t-30">提现说明</view>
  20. <view class="flex flex-direction justify-around lf-p-l-30 lf-p-t-20">
  21. <view class="lf-font-28" style="color: #555;">
  22. 1提现到账时间为T+1
  23. </view>
  24. <view class="lf-font-28" style="color: #555;">
  25. 2提现最高单笔金额为1000元
  26. </view>
  27. <view class="lf-font-28" style="color: #555;">
  28. 3提现手续费单笔收费10%
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="btn-bottom" style="bottom: 60rpx;">
  34. <view class="padding-lr-lg">
  35. <button class="cu-btn block bg-orange lg" style="border-radius: 42rpx;" @tap="subimitApply()">
  36. <text class="text-df text-white">提现</text>
  37. </button>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. num: ''
  47. }
  48. }
  49. }
  50. </script>
  51. <style>
  52. page{
  53. background-color: #F5F5F5;
  54. }
  55. </style>
  56. <style scoped>
  57. .wrap {
  58. height: 100%;
  59. width: 100%;
  60. background-color: #F5F5F5;
  61. }
  62. </style>