message.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <div class="page">
  3. <div class="page-top">
  4. <div class="icon-submit-succsss"></div>
  5. <div class="tip">视频发布成功&nbsp;!</div>
  6. </div>
  7. <div class="page-content">
  8. <div class="title">温馨提示:</div>
  9. <div class="content">
  10. 视频发布成功后,您可去首页查看您的视频排名,同时,平台会在1-2个工作日内将您的视频上传至抖音平台。上传成功后,平台会以短信的形式,将抖音口令发送到您的手机上,您可复制该抖音口令在抖音平台打开视频或直接在抖音平台搜索“ROSS”抖音账号或“视频标题”找到自己的视频,再将视频通过抖音分享方式分享给更多的好友来帮您点赞获得排名。如1-2工日后,您还未收到抖音口令或在抖音平台找不到自己发布的视频,可致电客服咨询,电话:
  11. <a href="tel:0755-85885625">0755-85885625</a>
  12. </div>
  13. </div>
  14. <div class="btn back" @click="onBack">返回</div>
  15. </div>
  16. </template>
  17. <script>
  18. import { mapGetters } from 'vuex'
  19. export default {
  20. layout: 'app-ross',
  21. computed: {
  22. ...mapGetters(['routePrefix']),
  23. },
  24. methods: {
  25. // 返回
  26. onBack() {
  27. const path = `${this.routePrefix}/activity/challenge`
  28. this.$router.push(path)
  29. },
  30. },
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. @media screen and (min-width: 768px) {
  35. .btn.back {
  36. display: none;
  37. }
  38. .page-top {
  39. display: flex;
  40. align-items: center;
  41. flex-direction: column;
  42. padding: 150px 0 80px;
  43. .icon-submit-succsss {
  44. width: 64px;
  45. height: 64px;
  46. background: url(~assets/theme-images/common/pc-icon-submit-success.png)
  47. no-repeat center;
  48. background-size: 64px;
  49. }
  50. .tip {
  51. font-size: 24px;
  52. font-weight: bold;
  53. color: #1890ff;
  54. }
  55. }
  56. .page-content {
  57. width: 694px;
  58. margin: 0 auto;
  59. font-size: 14px;
  60. line-height: 1.8;
  61. .title {
  62. color: #666666;
  63. margin-bottom: 8px;
  64. }
  65. .content {
  66. color: #999999;
  67. text-align: justify;
  68. a {
  69. color: #f3920d;
  70. }
  71. }
  72. }
  73. }
  74. @media screen and (max-width: 768px) {
  75. .page-top {
  76. display: flex;
  77. align-items: center;
  78. flex-direction: column;
  79. padding: 20.4vw 0 12.6vw;
  80. .icon-submit-succsss {
  81. width: 12vw;
  82. height: 12vw;
  83. background: url(~assets/theme-images/common/pc-icon-submit-success.png)
  84. no-repeat center;
  85. background-size: 12vw;
  86. }
  87. .tip {
  88. font-size: 4.2vw;
  89. font-weight: bold;
  90. color: #1890ff;
  91. }
  92. }
  93. .page-content {
  94. width: 88.4vw;
  95. margin: 0 auto;
  96. font-size: 3vw;
  97. line-height: 2;
  98. .title {
  99. color: #666666;
  100. margin-bottom: 2.4vw;
  101. }
  102. .content {
  103. color: #999999;
  104. text-align: justify;
  105. a {
  106. color: #f3920d;
  107. }
  108. }
  109. }
  110. .btn {
  111. width: 85.6vw;
  112. height: 12vw;
  113. background: #f3920d;
  114. border-radius: 0.2vw;
  115. margin: 0 auto;
  116. color: #fff;
  117. text-align: center;
  118. line-height: 12vw;
  119. font-size: 3.6vw;
  120. margin-top: 24vw;
  121. margin-bottom: 24vw;
  122. }
  123. }
  124. </style>