phoneValidationFail.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. window.location.href = '/cloudcenter'
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .validation {
  25. margin: 0 auto;
  26. width: 100%;
  27. background: #eee;
  28. .content {
  29. padding: 0 .5rem;
  30. margin: .5rem auto 0;
  31. width: 100%;
  32. text-align: center;
  33. background: #fff;
  34. .content-bottom {
  35. margin: 0 auto;
  36. padding-bottom: .5rem;
  37. width: 3.6rem;
  38. div.warp {
  39. padding-bottom: .65rem;
  40. }
  41. p {
  42. font-size: .24rem;
  43. color: #323232;
  44. img {
  45. margin-right: .2rem;
  46. width: .3rem;
  47. height: .28rem;
  48. }
  49. }
  50. p.pass {
  51. font-size: .24rem;
  52. color: #e77405;
  53. img {
  54. height: .3rem;
  55. }
  56. }
  57. p.passed {
  58. padding-top: .5rem;
  59. color: #e77405;
  60. img {
  61. height: .3rem;
  62. }
  63. }
  64. span {
  65. display: inline-block;
  66. text-align: left;
  67. font-size: .2rem;
  68. color: #8b8b8b;
  69. }
  70. span.close-tip {
  71. margin: .25rem 0 1rem 0;
  72. }
  73. .close-btn {
  74. margin: 0 auto;
  75. width: 1.7rem;
  76. height: .38rem;
  77. line-height: .38rem;
  78. font-size: .18rem;
  79. text-align: center;
  80. color: #323232;
  81. border: 1px solid #d2d2d2;
  82. border-radius: 3px;
  83. cursor: pointer;
  84. }
  85. }
  86. }
  87. }
  88. </style>