inviteeExits.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <layout bgImgName="invitee-exits-img" bgColor="#fdf2e3" bgHeight="188">
  3. <div class="invitee-exits">
  4. <div class="invitee-exits-privilege">
  5. <div>三大云机特权</div>
  6. <div>
  7. <div>
  8. <img
  9. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-1.png"
  10. alt=""
  11. />
  12. <div>游戏托管</div>
  13. </div>
  14. <div>
  15. <img
  16. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-2.png"
  17. alt=""
  18. />
  19. <div>应用分身</div>
  20. </div>
  21. <div>
  22. <img
  23. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-3.png"
  24. alt=""
  25. />
  26. <div>坐标定位</div>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="invitee-exits-phone-info">
  31. <div>云机可助您</div>
  32. <ul>
  33. <li>
  34. <img
  35. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-4.png"
  36. alt=""
  37. />
  38. 24小时运行游戏任务
  39. </li>
  40. <li>
  41. <img
  42. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-5.png"
  43. alt=""
  44. />
  45. 登录您的多个账号
  46. </li>
  47. <li>
  48. <img
  49. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-6.png"
  50. alt=""
  51. />
  52. 隐私手机空间
  53. </li>
  54. <li>
  55. <img
  56. src="@/assets/image/claimCloudPhone/invitee-exits-privilege-7.png"
  57. alt=""
  58. />
  59. 苹果手机玩安卓应用
  60. </li>
  61. </ul>
  62. </div>
  63. <div class="invitee-exits-btn">
  64. <div @click="$router.go(-1)">一键领取</div>
  65. <div @click="visible = true">放弃所有奖励</div>
  66. </div>
  67. </div>
  68. <van-dialog v-model="visible" :showConfirmButton="false">
  69. <img src="@/assets/image/claimCloudPhone/claim-the-bullet-box.png" alt="" class="claim-the-bullet-box" @click="toZeroYuanClaim">
  70. </van-dialog>
  71. </layout>
  72. </template>
  73. <script>
  74. import layout from './components/layout';
  75. export default {
  76. auth: false,
  77. name: 'inviteeExits',
  78. head: {
  79. title: '0元购机,尽情享受',
  80. },
  81. data() {
  82. return {
  83. visible: true,
  84. };
  85. },
  86. components: { layout },
  87. methods: {
  88. toZeroYuanClaim() {
  89. this.$router.push('/claimCloudPhone/zeroYuanClaim?inviteeExits=1')
  90. }
  91. }
  92. };
  93. </script>
  94. <style lang="less" scoped>
  95. ::v-deep .van-dialog{
  96. background: transparent;
  97. .claim-the-bullet-box{
  98. height: 320px;
  99. width: 304px;
  100. }
  101. }
  102. .invitee-exits {
  103. height: 100%;
  104. padding-top: 188px;
  105. box-sizing: border-box;
  106. .invitee-exits-privilege,
  107. .invitee-exits-phone-info {
  108. background: #ffffff;
  109. box-shadow: 0px 2px 4px 0px #f6e5d3;
  110. padding: 16px;
  111. border-radius: 16px;
  112. margin-bottom: 16px;
  113. & > div:first-of-type {
  114. font-family: PingFangSC, PingFang SC;
  115. font-weight: bold;
  116. font-size: 16px;
  117. color: #0a132b;
  118. line-height: 22px;
  119. font-style: normal;
  120. margin-bottom: 12px;
  121. }
  122. }
  123. .invitee-exits-phone-info {
  124. ul {
  125. padding: 0;
  126. font-family: PingFangSC, PingFang SC;
  127. font-weight: 400;
  128. font-size: 14px;
  129. color: #0a132b;
  130. line-height: 20px;
  131. font-style: normal;
  132. img {
  133. width: 20px;
  134. height: 20px;
  135. vertical-align: middle;
  136. }
  137. }
  138. }
  139. .invitee-exits-privilege {
  140. img {
  141. height: 42px;
  142. width: 42px;
  143. display: block;
  144. margin: 0 auto;
  145. }
  146. & > div:last-of-type {
  147. display: grid;
  148. grid-gap: 8px;
  149. grid-template-columns: repeat(3, 1fr);
  150. text-align: center;
  151. font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  152. font-weight: 400;
  153. font-size: 14px;
  154. color: #213d5f;
  155. line-height: 20px;
  156. font-style: normal;
  157. }
  158. }
  159. .invitee-exits-btn {
  160. & > div:first-of-type {
  161. width: 226px;
  162. height: 40px;
  163. background: linear-gradient(178deg, #fd8c50 0%, #fc3307 100%);
  164. border-radius: 26px;
  165. margin: 0 auto;
  166. font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  167. font-weight: bold;
  168. font-size: 18px;
  169. color: #ffffff;
  170. line-height: 40px;
  171. text-align: center;
  172. font-style: normal;
  173. }
  174. & > div:last-of-type {
  175. font-family: PingFangSC, PingFang SC;
  176. font-weight: 400;
  177. font-size: 12px;
  178. color: #7e8495;
  179. line-height: 17px;
  180. text-align: center;
  181. font-style: normal;
  182. margin-top: 10px;
  183. }
  184. }
  185. }
  186. </style>