EmailLinkPage.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <div class="email">
  3. <div class="header">
  4. <p>您好,<span>真烦</span></p>
  5. </div>
  6. <div class="body">
  7. <p class="first">您正在使用优软账户中心密码重置功能,您可以<a href="">点击这里</a>,或者复制以下链接通过浏览器打开:
  8. <a href=""> https://account.ubtob.com/sso/register?token=${token}#/valid </a>来完成重置密码。
  9. 重置链接有效期24小时。
  10. </p>
  11. <p class="second">祝您使用愉快!</p>
  12. <p class="second">优软云团队</p>
  13. </div>
  14. <div class="footer">
  15. 如果您有任何的疑问,请咨询 <a href="">客服中心</a>,联系电话:<a href="">400-830-1818</a>
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. name: 'EmailLinkPage'
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. .email{
  26. margin: 0 auto;
  27. width: 980px;
  28. }
  29. .email .header{
  30. padding-left: 5px;
  31. margin-top: 40px;
  32. width: 100%;
  33. height: 30px;
  34. line-height: 30px;
  35. background: #eee;
  36. }
  37. .email .header p{
  38. font-size:14px;
  39. font-weight: bold;
  40. color: #000;
  41. }
  42. .email .header p span{
  43. font-size: 14px;
  44. color: red;
  45. }
  46. .email .body{
  47. padding: 50px 0 30px 5px;
  48. width: 100%;
  49. background: #fff;
  50. }
  51. .email .body p{
  52. line-height: 25px;
  53. font-size: 14px;
  54. color: #333;
  55. }
  56. .email .body p a{
  57. font-size: 14px;
  58. color: #007ebf;
  59. }
  60. .email .body p.first{
  61. text-align: left;
  62. }
  63. .email .body p.second{
  64. margin-bottom: 0;
  65. text-align: right;
  66. }
  67. .email .footer{
  68. padding: 20px 0 60px 5px;
  69. font-size: 14px;
  70. color: #8c8c8c;
  71. border-top: 2px solid #989898;
  72. }
  73. .email .footer a{
  74. font-size: 14px;
  75. color: #007ebf;
  76. }
  77. </style>