Rap 原分销系统代码Web
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

90 Zeilen
1.8KB

  1. <template>
  2. <div class="errPage-container">
  3. <el-button icon="arrow-left" class="pan-back-btn" @click="back">
  4. 返回
  5. </el-button>
  6. <el-row>
  7. <el-col :span="12">
  8. <h1 class="text-jumbo text-ginormous">
  9. Oops!
  10. </h1>
  11. <h2>你没有权限去该页面</h2>
  12. <h6>如有不满请联系你领导</h6>
  13. <ul class="list-unstyled">
  14. <li>或者你可以去:</li>
  15. <li class="link-type">
  16. <router-link to="/dashboard">
  17. 回首页
  18. </router-link>
  19. </li>
  20. </ul>
  21. </el-col>
  22. <el-col :span="12">
  23. <img :src="errGif" width="313" height="428" alt="Girl has dropped her ice cream.">
  24. </el-col>
  25. </el-row>
  26. </div>
  27. </template>
  28. <script>
  29. import errGif from '@/assets/401_images/401.gif'
  30. export default {
  31. name: 'Page401',
  32. data() {
  33. return {
  34. errGif: errGif + '?' + +new Date()
  35. }
  36. },
  37. methods: {
  38. back() {
  39. if (this.$route.query.noGoBack) {
  40. this.$router.push({ path: '/dashboard' })
  41. } else {
  42. this.$router.go(-1)
  43. }
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. .errPage-container {
  50. width: 800px;
  51. max-width: 100%;
  52. margin: 100px auto;
  53. .pan-back-btn {
  54. background: #008489;
  55. color: #fff;
  56. border: none!important;
  57. }
  58. .pan-gif {
  59. margin: 0 auto;
  60. display: block;
  61. }
  62. .pan-img {
  63. display: block;
  64. margin: 0 auto;
  65. width: 100%;
  66. }
  67. .text-jumbo {
  68. font-size: 60px;
  69. font-weight: 700;
  70. color: #484848;
  71. }
  72. .list-unstyled {
  73. font-size: 14px;
  74. li {
  75. padding-bottom: 5px;
  76. }
  77. a {
  78. color: #008489;
  79. text-decoration: none;
  80. &:hover {
  81. text-decoration: underline;
  82. }
  83. }
  84. }
  85. }
  86. </style>