share.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="share-page">
  3. <headContent :showHead="false"></headContent>
  4. <view class="share-content">
  5. <view class="share-top">
  6. <image class="share-logo" src="../../static/share/img_02.png" mode=""></image>
  7. <text class="share-title">注册会员</text>
  8. <text class="share-title">获取高额奖励</text>
  9. <view class="share-list">
  10. <text class="share-list-item">· 安全的钱包技术</text>
  11. <text class="share-list-item">· 交易流畅顶级风控</text>
  12. <text class="share-list-item">· 丰富的加密资产业务</text>
  13. <text class="share-list-item">· 分布在世界各地的客户</text>
  14. </view>
  15. </view>
  16. <view class="share-footer">
  17. <image class="share-code" src="../../static/share/img_03.png" mode=""></image>
  18. <view class="share-btns">
  19. <view class="share-btn">
  20. 邀请您加入[币王]
  21. </view>
  22. <view class="share-btn-hint">
  23. <<< 长按识别二维码 </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. name: 'share',
  32. data() {
  33. return {
  34. // share
  35. }
  36. },
  37. methods: {
  38. }
  39. }
  40. </script>
  41. <style lang="scss" scoped>
  42. .share-page {
  43. width: 100%;
  44. min-height: 100vh;
  45. display: flex;
  46. flex-direction: column;
  47. .share-content {
  48. flex: 1;
  49. background-color: red;
  50. background: url("../../static/share/img_01.png") no-repeat center center;
  51. background-size: 100% 100%;
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: space-between;
  55. padding: 40rpx 30rpx 50rpx;
  56. .share-top {
  57. display: flex;
  58. flex-direction: column;
  59. .share-logo {
  60. width: 506rpx;
  61. height: 126rpx;
  62. font-size: 0;
  63. margin-bottom: 14rpx;
  64. }
  65. .share-title {
  66. font-size: 60rpx;
  67. font-family: PingFang SC, PingFang SC-Bold;
  68. font-weight: 700;
  69. color: #ffffff;
  70. line-height: 84rpx;
  71. letter-spacing: 1.2px;
  72. }
  73. .share-list {
  74. width: 100%;
  75. padding-top: 20rpx;
  76. display: flex;
  77. flex-direction: column;
  78. .share-list-item {
  79. font-size: 28rpx;
  80. font-family: PingFang SC, PingFang SC-Regular;
  81. font-weight: 400;
  82. color: #ffffff;
  83. line-height: 40rpx;
  84. letter-spacing: 0.56rpx;
  85. margin-bottom: 5rpx;
  86. }
  87. }
  88. }
  89. .share-footer {
  90. width: 100%;
  91. display: flex;
  92. align-items: center;
  93. .share-code {
  94. width: 178rpx;
  95. height: 178rpx;
  96. }
  97. .share-btns {
  98. width: calc(100% - 178rpx);
  99. padding-left: 45rpx;
  100. .share-btn {
  101. width: 100%;
  102. height: 58rpx;
  103. background: linear-gradient(180deg, #faae3d, #f9d159);
  104. border-radius: 29rpx;
  105. text-align: center;
  106. line-height: 58rpx;
  107. font-size: 28rpx;
  108. font-family: PingFang SC, PingFang SC-Regular;
  109. font-weight: 400;
  110. color: #1a1a1a;
  111. letter-spacing: 0.56rpx;
  112. }
  113. .share-btn-hint {
  114. padding-top: 22rpx;
  115. font-size: 28rpx;
  116. font-family: PingFang SC, PingFang SC-Regular;
  117. font-weight: 400;
  118. text-align: center;
  119. color: #ffffff;
  120. line-height: 40rpx;
  121. letter-spacing: 0.56rpx;
  122. }
  123. }
  124. }
  125. // <view class="share-footer">
  126. // <image class="share-code" src="../../static/share/img_03.png" mode=""></image>
  127. // <view class="share-btns">
  128. // <view class="share-btn">
  129. // 邀请您加入[币王]
  130. // </view>
  131. // <view class="share-btn-hint">
  132. // <<< 长按识别二维码 </view>
  133. // </view>
  134. // </view>
  135. // </view>
  136. }
  137. }
  138. </style>