UserInfo.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <div class="account-info">
  3. <div class="info-title pf600 fs18 fc121212">账号信息</div>
  4. <div class="info-uid">
  5. <div class="uid-left pf500 fs14 fc333333">UID</div>
  6. <div class="uid-right pf400 fs14 fcA8A8A8">
  7. 115615080805020850
  8. <div class="copy">
  9. <img src="../../../assets/icon/index/CopySimple.svg" alt="" />
  10. </div>
  11. </div>
  12. </div>
  13. <div class="info-identity">
  14. <div class="identity-left pf500 fs14 fc333333">身份认证</div>
  15. <div class="identity-right pf500 fs14 fcA8A8A8">
  16. 未认证
  17. <div class="arrow">
  18. <img src="../../../assets/icon/index/right-arrow-gray.svg" alt="" />
  19. </div>
  20. </div>
  21. </div>
  22. <div class="info-country">
  23. <div class="country-left pf500 fs14 fc333333">国家或地区</div>
  24. <div class="country-right pf500 fs14 fcA8A8A8">美国</div>
  25. </div>
  26. <div class="info-identity">
  27. <div class="identity-left pf500 fs14 fc333333">我的VIP</div>
  28. <div class="identity-right pf500 fs14 fcA8A8A8">
  29. 普通用户
  30. <div class="arrow">
  31. <img src="../../../assets/icon/index/right-arrow-gray.svg" alt="" />
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. </template>
  37. <script setup></script>
  38. <style lang="less" scoped>
  39. .account-info {
  40. margin-top: 15px;
  41. width: 349rpx;
  42. .info-title {
  43. height: 24px;
  44. line-height: 24px;
  45. }
  46. .info-uid {
  47. display: flex;
  48. flex-direction: row;
  49. justify-content: space-between;
  50. align-items: center;
  51. margin-top: 10px;
  52. width: 349px;
  53. height: 24px;
  54. .uid-left {
  55. height: 24px;
  56. line-height: 24px;
  57. }
  58. .uid-right {
  59. display: flex;
  60. flex-direction: row;
  61. justify-content: flex-start;
  62. align-items: center;
  63. .copy {
  64. display: flex;
  65. flex-direction: row;
  66. justify-content: center;
  67. align-items: center;
  68. margin-left: 2px;
  69. width: 20px;
  70. height: 20px;
  71. img {
  72. width: 14px;
  73. height: 14px;
  74. }
  75. }
  76. }
  77. }
  78. .info-identity {
  79. display: flex;
  80. flex-direction: row;
  81. justify-content: space-between;
  82. align-items: center;
  83. margin-top: 22px;
  84. width: 349px;
  85. height: 24px;
  86. .identity-left {
  87. height: 24px;
  88. line-height: 24px;
  89. }
  90. .identity-right {
  91. display: flex;
  92. flex-direction: row;
  93. justify-content: flex-start;
  94. align-items: center;
  95. height: 24px;
  96. .arrow {
  97. display: flex;
  98. flex-direction: row;
  99. justify-content: center;
  100. align-items: center;
  101. margin-left: 2px;
  102. width: 20px;
  103. height: 20px;
  104. img {
  105. width: 5px;
  106. height: 10px;
  107. }
  108. }
  109. }
  110. }
  111. .info-country {
  112. display: flex;
  113. flex-direction: row;
  114. justify-content: space-between;
  115. align-items: center;
  116. margin-top: 22px;
  117. width: 349px;
  118. height: 24px;
  119. .country-left {
  120. height: 24px;
  121. line-height: 24px;
  122. }
  123. .country-right {
  124. padding-right: 4px;
  125. box-sizing: border-box;
  126. }
  127. }
  128. }
  129. </style>