message.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. onBack() {
  26. const path = `${this.routePrefix}/activity/challenge`
  27. this.$router.push(path)
  28. },
  29. },
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. @media screen and (min-width: 768px) {
  34. .btn.back {
  35. display: none;
  36. }
  37. .page-top {
  38. display: flex;
  39. align-items: center;
  40. flex-direction: column;
  41. padding: 150px 0 80px;
  42. .icon-submit-succsss {
  43. width: 64px;
  44. height: 64px;
  45. background: url(~assets/theme-images/common/pc-icon-submit-success.png)
  46. no-repeat center;
  47. background-size: 64px;
  48. }
  49. .tip {
  50. font-size: 24px;
  51. font-weight: bold;
  52. color: #1890ff;
  53. }
  54. }
  55. .page-content {
  56. width: 694px;
  57. margin: 0 auto;
  58. font-size: 14px;
  59. line-height: 1.8;
  60. .title {
  61. color: #666666;
  62. margin-bottom: 8px;
  63. }
  64. .content {
  65. color: #999999;
  66. text-align: justify;
  67. a {
  68. color: #f3920d;
  69. }
  70. }
  71. }
  72. }
  73. @media screen and (max-width: 768px) {
  74. .page-top {
  75. display: flex;
  76. align-items: center;
  77. flex-direction: column;
  78. padding: 20.4vw 0 12.6vw;
  79. .icon-submit-succsss {
  80. width: 12vw;
  81. height: 12vw;
  82. background: url(~assets/theme-images/common/pc-icon-submit-success.png)
  83. no-repeat center;
  84. background-size: 12vw;
  85. }
  86. .tip {
  87. font-size: 4.2vw;
  88. font-weight: bold;
  89. color: #1890ff;
  90. }
  91. }
  92. .page-content {
  93. width: 88.4vw;
  94. margin: 0 auto;
  95. font-size: 3vw;
  96. line-height: 2;
  97. .title {
  98. color: #666666;
  99. margin-bottom: 2.4vw;
  100. }
  101. .content {
  102. color: #999999;
  103. text-align: justify;
  104. a {
  105. color: #f3920d;
  106. }
  107. }
  108. }
  109. .btn {
  110. width: 85.6vw;
  111. height: 12vw;
  112. background: #f3920d;
  113. border-radius: 0.2vw;
  114. margin: 0 auto;
  115. color: #fff;
  116. text-align: center;
  117. line-height: 12vw;
  118. font-size: 3.6vw;
  119. margin-top: 25.9vw;
  120. }
  121. }
  122. </style>