error.vue 976 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div class="error">
  3. <div class="section">
  4. <div class="container">
  5. <div class="btn-click">
  6. <a href="/"><i class="fa fa-home" style="margin-right:5px;"/>返回首页</a>
  7. <a href="javascript:history.go(-1)"><i class="fa fa-reply" style="margin-right:5px;"/>返回上一页</a>
  8. </div>
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. props: ['error']
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. .section{
  20. background: #ebfdff url('/404.png')no-repeat center center;
  21. height:900px;
  22. position:relative;
  23. }
  24. .section .btn-click{
  25. position:absolute;
  26. top:54%;
  27. left:50%;
  28. margin-left:-150px;
  29. }
  30. .section .btn-click a{
  31. display:inline-block;
  32. width:130px;
  33. height:33px;
  34. font-size: 16px;
  35. line-height: 33px;
  36. color:#fff;
  37. background: #f87c29;
  38. text-align: center;
  39. margin:0 10px;
  40. border-radius: 2px;
  41. text-decoration: none;
  42. }
  43. </style>