Blame view

src/views/error-page/404.vue 2.24 KB
477ec56f   monkeyhouyi   权限
1
2
3
4
5
6
7
8
  <template>
    <div class="app-container http404-container">
      <div class="http404">
        <img src="@/assets/images/404.png" alt="404" class="pic-404">
        <div class="bullshit">
          <el-link type="primary" class="bullshit__oops" :underline="false">OOPS!</el-link>
          <div class="bullshit__headline">{{ message }}</div>
          <div class="bullshit__info">请检查您输入的URL是否正确,或单击按钮返回首页。</div>
0af91599   monkeyhouyi   弹框请求优化
9
          <el-button type="primary" size="large" @click="$router.push('/homePage')">返回首页</el-button>
477ec56f   monkeyhouyi   权限
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
        </div>
      </div>
    </div>
  </template>
  
  <script>
  
  export default {
    name: 'Page404',
    computed: {
      message() {
        return '抱歉,你访问的页面不存在或无权访问!'
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
  .http404-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .http404 {
    .pic-404 {
      position: relative;
      float: left;
      width: 500px;
      overflow: hidden;
      margin-right: 100px;
    }
    .bullshit {
      position: relative;
      float: left;
      width: 350px;
      padding: 90px 0;
      overflow: hidden;
      &__oops {
        font-size: 32px;
        font-weight: bold;
        line-height: 40px;
        opacity: 0;
        margin-bottom: 20px;
        animation-name: slideUp;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
      }
      &__headline {
        font-size: 20px;
        line-height: 24px;
        color: #222;
        font-weight: bold;
        opacity: 0;
        margin-bottom: 10px;
        animation-name: slideUp;
        animation-duration: 0.5s;
        animation-delay: 0.1s;
        animation-fill-mode: forwards;
      }
      &__info {
        font-size: 13px;
        line-height: 21px;
        color: grey;
        opacity: 0;
        margin-bottom: 40px;
        animation-name: slideUp;
        animation-duration: 0.5s;
        animation-delay: 0.2s;
        animation-fill-mode: forwards;
      }
      &__return-home {
        float: left;
        animation-name: slideUp;
        animation-duration: 0.5s;
        animation-delay: 0.3s;
        animation-fill-mode: forwards;
      }
      @keyframes slideUp {
        0% {
          transform: translateY(60px);
          opacity: 0;
        }
        100% {
          transform: translateY(0);
          opacity: 1;
        }
      }
    }
  }
  </style>