recharge.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <view class="center">
  3. <view class="top">
  4. <view class="title flex">
  5. <view class="xian"></view>
  6. <view class="title-font">
  7. 充币二维码
  8. </view>
  9. </view>
  10. <view class="erweima-box">
  11. <view class="erweima-font">
  12. 请转入USDT
  13. </view>
  14. <view class="erweima">
  15. <image src="" mode=""></image>
  16. </view>
  17. </view>
  18. <view class="btn">
  19. 保存二维码
  20. </view>
  21. </view>
  22. <view class="top">
  23. <view class="title flex">
  24. <view class="xian"></view>
  25. <view class="title-font">
  26. 充币地址
  27. </view>
  28. </view>
  29. <view class="address">
  30. 0XJDKHGHDHFH3773HWEHG
  31. </view>
  32. <view class="btn" style="margin-top: 50rpx;">
  33. 复制充币地址
  34. </view>
  35. </view>
  36. <view class="top info">
  37. 请勿向上述地址充值人任何非USDT资产,否则资产将不可追回。<br>
  38. USDT冲币仅支持ERC2.0以太坊上的资产,其他USDT将无法上帐,请您谅解。<br>
  39. 您充值至上述地址后,需要整个网络节点确认,1次网络确认后到账,2次网络确认后即可提币。<br>
  40. 最小充值金额:100USDT,小于最小金额的充值将不会上帐且无法退回。<br>
  41. 请通过IMTOKEN充值,充值时在备注栏填写 个人的用户ID,如果用户ID错误,将导致您无法入账,请注意确认。
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. }
  50. },
  51. methods:{
  52. }
  53. }
  54. </script>
  55. <style lang="scss">
  56. .center,page {
  57. height: 100%;
  58. background: #F3F3F3;
  59. }
  60. .top:first-child {
  61. margin-top: 0;
  62. }
  63. .top {
  64. margin-top: 20rpx;
  65. width: 100%;
  66. height: auto;
  67. background: #FFFFFF;
  68. padding: 26rpx 30rpx 50rpx;
  69. .erweima-box {
  70. margin-top: 77rpx ;
  71. .erweima-font {
  72. text-align: center;
  73. font-size: 30rpx;
  74. font-family: PingFang SC;
  75. font-weight: bold;
  76. color: #333333;
  77. }
  78. .erweima {
  79. margin: 16rpx auto 0;
  80. width: 188rpx;
  81. height: 188rpx;
  82. background: #00BCD4;
  83. image {
  84. width: 100%;
  85. height: 100%;
  86. }
  87. }
  88. }
  89. .address {
  90. margin-top: 86rpx;
  91. text-align: center;
  92. }
  93. }
  94. .title {
  95. justify-content: flex-start;
  96. align-items: center;
  97. .xian {
  98. width: 2rpx;
  99. height: 30rpx;
  100. background: linear-gradient(90deg, #F95B2F, #60BAB0, #45969B);
  101. }
  102. .title-font {
  103. padding-left: 16rpx;
  104. font-size: 30rpx;
  105. font-family: PingFang SC;
  106. font-weight: bold;
  107. color: #333333;
  108. }
  109. }
  110. .btn{
  111. margin: 36rpx auto 0;
  112. width: 500rpx;
  113. height: 60rpx;
  114. background: linear-gradient(90deg, #60BAB0, #60BAB0, #45969B);
  115. border-radius: 30px;
  116. line-height: 60rpx;
  117. text-align: center;
  118. font-size: 26rpx;
  119. font-family: PingFang SC;
  120. font-weight: 500;
  121. color: #FFFFFF;
  122. }
  123. .info {
  124. font-size: 24rpx;
  125. font-family: PingFang SC;
  126. font-weight: 500;
  127. color: #333333;
  128. line-height: 42rpx;
  129. }
  130. </style>