activeSuccess.vue 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <div class="page_activeSuccess">
  3. <van-sticky>
  4. <div class="activeSuccessTitle">
  5. <i class="iconfont icon-zuojiantou jiantou" @click="$router.go(-1)"></i>
  6. <span class="titleName">活动报名表</span>
  7. </div>
  8. </van-sticky>
  9. <div class="successBox">
  10. <div class="successImg">
  11. <img src="../../assets/images/true.png" alt="">
  12. <p>提交成功</p>
  13. </div>
  14. </div>
  15. <div class="msgBox">
  16. <p>您已完成填写,</p>
  17. <p>工作人员将通过电话或微信联系您并进行信息审核。</p>
  18. <img src="../../assets/images/ercode.png" alt="">
  19. <p>欢迎扫码加入</p>
  20. <p>【酷医云民营血透医护交流群二】微信群,</p>
  21. <p>了解行业热点,获取知识!</p>
  22. </div>
  23. <div class="ercode" @click="returnIndex">返回首页</div>
  24. </div>
  25. </template>
  26. <script>
  27. export default {
  28. methods:{
  29. returnIndex(){
  30. this.$router.push({ path: "/homeIndex" });
  31. }
  32. }
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. .page_activeSuccess{
  37. .activeSuccessTitle{
  38. background: #fff;
  39. height: 3.125rem;
  40. line-height: 3.125rem;
  41. display: flex;
  42. align-items: center;
  43. }
  44. .jiantou {
  45. margin-left: 1.25rem;
  46. font-size: 1.5rem;
  47. font-weight: 600;
  48. margin-right: 6.2rem;
  49. }
  50. .titleName {
  51. font-size: 1.125rem;
  52. font-weight: 600;
  53. }
  54. .successImg{
  55. margin-top: 3.125rem;
  56. img{
  57. width: 6.25rem;
  58. height: 6.25rem;
  59. margin: 0 auto;
  60. display: block;
  61. }
  62. p{
  63. font-size: 1.5rem;
  64. text-align: center;
  65. margin-top: .625rem;
  66. }
  67. }
  68. .msgBox{
  69. font-size: .875rem;
  70. color: #858585;
  71. margin-top: 1.25rem;
  72. p{
  73. text-align: center;
  74. line-height: 1.25rem;
  75. }
  76. img{
  77. width: 9.375rem;
  78. height: 9.375rem;
  79. margin: 1rem auto .5rem;
  80. display: block;
  81. }
  82. }
  83. .ercode{
  84. width:14.5rem;
  85. height:2.5rem;
  86. line-height: 2.5rem;
  87. text-align: center;
  88. background:rgba(25,121,244,1);
  89. border-radius:20px;
  90. color: #fff;
  91. margin: 1.875rem auto;
  92. }
  93. }
  94. </style>