extract.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="box">
  3. <view class="header">
  4. <view class="title">支付宝提现</view>
  5. <view class="moneyView">
  6. <text class="icon">¥</text>
  7. <input type="text" class="moneyInput" placeholder-style="color:#999999; font-size:30rpx" placeholder="请输入提现金额" v-model="money"/>
  8. <view class="tixian">全部提现</view>
  9. </view>
  10. <view class="zongMoney">可提现金额:¥934.23</view>
  11. <view class="line"></view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. money:'',
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style>
  27. .box {
  28. min-height: 100vh;
  29. background: #F4F5F7;
  30. padding-top: 20rpx;
  31. }
  32. .header{
  33. background-color: #FFFFFF;
  34. margin: 0 24rpx;
  35. border-radius: 10rpx;
  36. padding: 30rpx 20rpx;
  37. }
  38. .title{
  39. font-size: 30rpx;
  40. color: #3C3C3C;
  41. font-weight: bold;
  42. }
  43. .moneyView{
  44. display: flex;
  45. justify-content: space-between;
  46. align-items: center;
  47. margin: 15rpx 0;
  48. }
  49. .icon{
  50. font-size: 50rpx;
  51. color: #222222;
  52. font-weight: bold;
  53. }
  54. .moneyInput{
  55. font-size: 70rpx;
  56. color: #222222;
  57. font-weight: bold;
  58. flex-grow: 1;
  59. }
  60. .tixian{
  61. font-size: 26rpx;
  62. color: #FF4F00;
  63. width: 150rpx;
  64. }
  65. .zongMoney{
  66. font-size: 26rpx;
  67. color: #999999;
  68. margin-bottom: 30rpx;
  69. }
  70. .line{
  71. margin: 0 20rpx;
  72. background-color: #EEEEEE;
  73. height: 1rpx;
  74. }
  75. </style>