withdrawal.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <view class="all">
  3. <view class="top">
  4. <view class="topO">
  5. {{$t('userinfo.u6')}}
  6. </view>
  7. <view class="topT">
  8. <view class="TT">USDT-TRC20</view>
  9. </view>
  10. <view class="topS">
  11. {{$t('userinfo.u7')}}
  12. </view>
  13. <view class="topF">
  14. <input class="FF" v-model="withdrawal" :placeholder="placeholder" placeholder-class="placeholder" />
  15. </view>
  16. <view class="topS">
  17. {{$t('userinfo.u8')}}
  18. </view>
  19. <view class="topF">
  20. <input class="FF" v-model="withdrawal" :placeholder="placeholder" placeholder-class="placeholder" />
  21. </view>
  22. </view>
  23. <view class="center">
  24. <view class="tx">{{$t('userinfo.u9')}}</view>
  25. <view class="buzhou">
  26. <view class="">1.{{$t('userinfo.u10')}} </view>
  27. <view class="">① {{$t('userinfo.u11')}}</view>
  28. <view class="">② {{$t('userinfo.u12')}} </view>
  29. <view class="">2.{{$t('userinfo.u13')}}</view>
  30. <view class="">3.{{$t('userinfo.u14')}}</view>
  31. <view class="">4.{{$t('userinfo.u15')}}</view>
  32. </view>
  33. </view>
  34. <view class="last">
  35. <view class="la">{{$t('userinfo.u16')}}</view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. withdrawal: '', //提现地址
  44. placeholder: '',
  45. };
  46. }
  47. }
  48. </script>
  49. <style lang="scss">
  50. .all {
  51. width: 750rpx;
  52. height: 1334rpx;
  53. background-color: #000000;
  54. }
  55. .top {
  56. width: 690rpx;
  57. height: 560rpx;
  58. background: #191A1F;
  59. border-radius: 20rpx;
  60. margin-left: 30rpx;
  61. }
  62. .topO {
  63. height: 31rpx;
  64. font-size: 32rpx;
  65. font-family: PingFang SC;
  66. font-weight: bold;
  67. color: #FFFFFF;
  68. line-height: 24rpx;
  69. margin-left: 21rpx;
  70. padding-top: 37rpx;
  71. }
  72. .topT {
  73. width: 222rpx;
  74. height: 68rpx;
  75. border: 2px solid #DDBA82;
  76. border-radius: 10rpx;
  77. margin-left: 20rpx;
  78. margin-top: 60rpx;
  79. }
  80. .TT {
  81. width: 168rpx;
  82. height: 20rpx;
  83. font-size: 26rpx;
  84. font-family: PingFang SC;
  85. font-weight: bold;
  86. color: #FEB041;
  87. line-height: 24rpx;
  88. margin-left: 23rpx;
  89. margin-top: 20rpx;
  90. }
  91. .topS {
  92. margin-top: 29rpx;
  93. margin-left: 20rpx;
  94. height: 31rpx;
  95. font-size: 32rpx;
  96. font-family: PingFang SC;
  97. font-weight: bold;
  98. color: #FFFFFF;
  99. line-height: 24rpx;
  100. }
  101. .topF {
  102. width: 648rpx;
  103. height: 73rpx;
  104. background-color: #FEB041;
  105. opacity: 0.09;
  106. border-radius: 20rpx;
  107. margin-left: 20rpx;
  108. margin-top: 39rpx;
  109. .FF {
  110. height: 25rpx;
  111. font-size: 26rpx;
  112. font-family: PingFang SC;
  113. font-weight: 500;
  114. color: #FFFFFF;
  115. line-height: 24rpx;
  116. opacity: 0.51;
  117. }
  118. }
  119. .center {
  120. width: 690rpx;
  121. // height: 460rpx;
  122. background: #191A1F;
  123. border-radius: 20rpx;
  124. margin-top: 20rpx;
  125. margin-left: 30rpx;
  126. padding-bottom: 12rpx;
  127. }
  128. .tx {
  129. height: 27rpx;
  130. font-size: 29rpx;
  131. font-family: PingFang SC;
  132. font-weight: 500;
  133. color: #FFFFFF;
  134. line-height: 30rpx;
  135. margin-left: 34rpx;
  136. padding-top: 36rpx;
  137. }
  138. .buzhou {
  139. width: 624rpx;
  140. // height: 280rpx;
  141. font-size: 24rpx;
  142. font-family: PingFang SC;
  143. font-weight: 500;
  144. color: #999999;
  145. line-height: 41rpx;
  146. margin-left: 33rpx;
  147. margin-top: 50rpx;
  148. }
  149. .last {
  150. width: 690rpx;
  151. height: 90rpx;
  152. background: #feb041;
  153. border-radius: 10rpx;
  154. margin-left: 30rpx;
  155. margin-top: 30rpx;
  156. }
  157. .la {
  158. // width: 126rpx;
  159. height: 31rpx;
  160. font-size: 32rpx;
  161. font-family: PingFang SC;
  162. font-weight: bold;
  163. color: #040404;
  164. line-height: 55rpx;
  165. margin-left: 282rpx;
  166. padding-top: 20rpx;
  167. }
  168. </style>