phoneValidationFail.vue 1.8 KB

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