withdraw.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="container">
  3. <view class="header">
  4. <view class="row-box">
  5. <view class="title">可提现金额</view>
  6. <view class="row">
  7. <view class="tit">¥</view>
  8. <view class="counts">1000.10</view>
  9. </view>
  10. </view>
  11. <view class="row-box">
  12. <view class="title">申请提现金额</view>
  13. <view class="row">
  14. <view class="tit">¥</view>
  15. <view class="counts">1000</view>
  16. </view>
  17. </view>
  18. <view class="buttom" @click="">全部提现</view>
  19. </view>
  20. <view class="conent">
  21. <view class="text">提现到</view>
  22. <view class="conent-box"></view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data () {
  29. return {}
  30. },
  31. methods: {}
  32. }
  33. </script>
  34. <style lang="scss">
  35. .header {
  36. height: 330rpx;
  37. background-color: #fff;
  38. .row-box {
  39. height: 130rpx;
  40. width: 700rpx;
  41. background-color: #fff;
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-between;
  45. border-bottom: 1rpx solid #E6E6E6;
  46. margin: 0 auto;
  47. .title {
  48. font-size: 32rpx;
  49. font-family: PingFang SC;
  50. font-weight: 500;
  51. color: #333333;
  52. }
  53. .row {
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. .counts {
  58. font-size: 50rpx;
  59. font-family: Source Han Sans CN;
  60. font-weight: 500;
  61. color: #333333;
  62. }
  63. }
  64. }
  65. .buttom {
  66. margin-top: 10rpx;
  67. margin-left: 620rpx;
  68. flex-direction: column;
  69. width: 105rpx;
  70. height: 25rpx;
  71. font-size: 26rpx;
  72. font-family: Source Han Sans CN;
  73. font-weight: 400;
  74. color: #FF4C4C;
  75. line-height: 42rpx;
  76. }
  77. }
  78. .conent {
  79. margin-top: 20rpx;
  80. height: 890rpx;
  81. background-color: #fff;
  82. .text {
  83. font-size: 30rpx;
  84. font-family: Source Han Sans CN;
  85. font-weight: 400;
  86. color: #333333;
  87. padding-top: 20rpx;
  88. margin-left: 20rpx;
  89. }
  90. .conent-box {
  91. height: 130rpx;
  92. width: 700rpx;
  93. border-bottom: 1rpx solid #E6E6E6;
  94. margin: 0 auto;
  95. }
  96. }
  97. </style>