phoneValidationFail.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <div class="validation">
  3. <div class="content">
  4. <div class="content-bottom">
  5. <p class="passed"><img src="/images/all/times.png" alt=""/>链接已失效</p>
  6. <span class="close-tip">邮箱链接因超时未点击或其他原因已失效,请重新验证!</span>
  7. <div class="close-btn" @click="goCloudCenter">返回云中心</div>
  8. </div>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: 'validation',
  15. methods: {
  16. // 跳转至云中心页面
  17. goCloudCenter () {
  18. if (this.$route.query.returnURL) {
  19. window.location.href = decodeURIComponent(this.$route.query.returnURL)
  20. } else {
  21. this.$router.push('/cloudcenter')
  22. }
  23. }
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. .validation {
  29. margin: 0 auto;
  30. width: 100%;
  31. background: #eee;
  32. .content {
  33. padding: 0 .5rem;
  34. margin: .5rem auto 0;
  35. width: 100%;
  36. text-align: center;
  37. background: #fff;
  38. .content-bottom {
  39. margin: 0 auto;
  40. padding-bottom: .5rem;
  41. width: 3.6rem;
  42. div.warp {
  43. padding-bottom: .65rem;
  44. }
  45. p {
  46. font-size: .24rem;
  47. color: #323232;
  48. img {
  49. margin-right: .2rem;
  50. width: .3rem;
  51. height: .28rem;
  52. }
  53. }
  54. p.pass {
  55. font-size: .24rem;
  56. color: #e77405;
  57. img {
  58. height: .3rem;
  59. }
  60. }
  61. p.passed {
  62. padding-top: .5rem;
  63. color: #e77405;
  64. img {
  65. height: .3rem;
  66. }
  67. }
  68. span {
  69. display: inline-block;
  70. text-align: left;
  71. font-size: .2rem;
  72. color: #8b8b8b;
  73. }
  74. span.close-tip {
  75. margin: .25rem 0 1rem 0;
  76. }
  77. .close-btn {
  78. margin: 0 auto;
  79. width: 1.7rem;
  80. height: .38rem;
  81. line-height: .38rem;
  82. font-size: .18rem;
  83. text-align: center;
  84. color: #323232;
  85. border: 1px solid #d2d2d2;
  86. border-radius: 3px;
  87. cursor: pointer;
  88. }
  89. }
  90. }
  91. }
  92. </style>