WithdrawIndex.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <!-- 提现 -->
  3. <div class="loan-header">
  4. <div class="header-content pf600 fs16 fc1F2937">
  5. <img
  6. class="left-arrow-image"
  7. src="../../../assets/icon/index/left-arrow.svg"
  8. @click="toPath()" />
  9. 提现
  10. <div class="save pf600 fs14 fcA8A8A8">
  11. <img src="../../../assets/icon/index/history.svg" alt="" />历史
  12. </div>
  13. </div>
  14. </div>
  15. <div class="withdraw-index">
  16. <div class="card-type">
  17. <div class="card-text pf500 fs14 fc333333">请选择货币类型</div>
  18. <div class="type-select pf400 fs14 fc333333">
  19. USDT
  20. <img src="../../../assets/icon/market/bottom-arrow.svg" alt="" />
  21. </div>
  22. </div>
  23. <div class="card-type">
  24. <div class="card-text pf500 fs14 fc333333">请选择主网络</div>
  25. <div class="type-select pf400 fs14 fc333333">
  26. ERC 20
  27. <img src="../../../assets/icon/market/bottom-arrow.svg" alt="" />
  28. </div>
  29. </div>
  30. <div class="card-number">
  31. <div class="card-text pf500 fs14 fc333333">请输入提现地址</div>
  32. <div class="number-input">
  33. <input type="text" class="input pf400 fs14 fc333333" placeholder="请输入" />
  34. </div>
  35. </div>
  36. <div class="card-number">
  37. <div class="card-text pf500 fs14 fc333333">提现金额</div>
  38. <div class="number-input">
  39. <input
  40. type="text"
  41. class="input pf400 fs14 fc333333"
  42. placeholder="请输入提现金额" />
  43. <div class="all pf500 fs14 fc333333">USDT <span class="fcDF384C">全部</span></div>
  44. </div>
  45. </div>
  46. <div class="use-money pf500 fs12 fc333333">可用 215.0508 USDT</div>
  47. <div class="submit pf600 fs14 fcFFFFFF">立即提现</div>
  48. <div class="gas-fee pf500 fs14 fc333333">提现手续费: 3%</div>
  49. </div>
  50. </template>
  51. <script setup></script>
  52. <style lang="less" scoped>
  53. .loan-header {
  54. position: fixed;
  55. left: 0;
  56. top: 0;
  57. z-index: 1;
  58. width: 100%;
  59. height: 48px;
  60. background: #ffffff;
  61. overflow: hidden;
  62. .header-content {
  63. display: flex;
  64. flex-direction: row;
  65. justify-content: center;
  66. align-items: center;
  67. position: relative;
  68. width: 100%;
  69. height: 48px;
  70. .left-arrow-image {
  71. position: absolute;
  72. left: 14px;
  73. top: 15px;
  74. width: 9px;
  75. height: 16px;
  76. }
  77. .save {
  78. display: flex;
  79. flex-direction: row;
  80. justify-content: flex-start;
  81. align-items: center;
  82. position: absolute;
  83. top: 12.3px;
  84. right: 16px;
  85. height: 24px;
  86. img {
  87. margin-right: 4px;
  88. }
  89. }
  90. }
  91. }
  92. .withdraw-index {
  93. display: flex;
  94. flex-direction: column;
  95. justify-content: flex-start;
  96. align-items: center;
  97. margin-top: 48px;
  98. width: 100%;
  99. .card-type {
  100. margin-top: 10px;
  101. width: 345px;
  102. .type-select {
  103. display: flex;
  104. flex-direction: row;
  105. justify-content: space-between;
  106. align-items: center;
  107. margin-top: 5px;
  108. padding: 0 11px;
  109. width: 345px;
  110. height: 45px;
  111. border-radius: 6px;
  112. background: #f5f5f5;
  113. box-sizing: border-box;
  114. img {
  115. width: 12px;
  116. height: 8px;
  117. }
  118. }
  119. }
  120. .card-number {
  121. margin-top: 10px;
  122. width: 345px;
  123. .number-input {
  124. position: relative;
  125. margin-top: 5px;
  126. width: 345px;
  127. height: 45px;
  128. .input {
  129. padding-left: 11px;
  130. width: 100%;
  131. height: 100%;
  132. box-sizing: border-box;
  133. border-radius: 6px;
  134. border: none;
  135. outline: none;
  136. background: #f5f5f5;
  137. }
  138. .all {
  139. position: absolute;
  140. top: 13px;
  141. right: 11px;
  142. }
  143. }
  144. }
  145. .use-money {
  146. margin-top: 7px;
  147. width: 345px;
  148. height: 18px;
  149. line-height: 18px;
  150. }
  151. .submit {
  152. margin-top: 214px;
  153. width: 311px;
  154. height: 40px;
  155. line-height: 40px;
  156. text-align: center;
  157. border-radius: 100px;
  158. background: #df384c;
  159. letter-spacing: 0.2px;
  160. }
  161. .gas-fee {
  162. margin-top: 15px;
  163. height: 18px;
  164. line-height: 18px;
  165. }
  166. }
  167. </style>