Blame view

src/views/404.vue 1.39 KB
e7ab2c09a   alexYang   权限部分
1
2
3
4
5
6
7
8
9
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
  <template>
    <div class="site-wrapper site-page--not-found">
      <div class="site-content__wrapper">
        <div class="site-content">
          <h2 class="not-found-title">404</h2>
          <p class="not-found-desc">抱歉!您访问的页面<em>失联</em>啦 ...</p>
          <el-button @click="$router.go(-1)">返回上一页</el-button>
          <el-button type="primary" class="not-found-btn-gohome" @click="$router.push('/')">进入首页</el-button>
        </div>
      </div>
    </div>
  </template>
  
  <script>
    export default {
      name: '404'
    }
  </script>
  
  <style lang="scss">
    .site-wrapper.site-page--not-found {
      position: absolute;
      top: 60px;
      right: 0;
      bottom: 0;
      left: 0;
      overflow: hidden;
      .site-content__wrapper {
        padding: 0;
        margin: 0;
        background-color: #fff;
      }
      .site-content {
        position: fixed;
        top: 15%;
        left: 50%;
        z-index: 2;
        padding: 30px;
        text-align: center;
        transform: translate(-50%, 0);
      }
      .not-found-title {
        margin: 20px 0 15px;
        font-size: 8em;
        font-weight: 500;
        color: rgb(55, 71, 79);
      }
      .not-found-desc {
        margin: 0 0 30px;
        font-size: 26px;
        text-transform: uppercase;
        color: rgb(118, 131, 143);
        > em {
          font-style: normal;
          color: #ee8145;
        }
      }
      .not-found-btn-gohome {
        margin-left: 30px;
      }
    }
  </style>