jiangping
2025-03-17 a6d047e106c00a32603ed9c037a1e27b7f75ee6b
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
<template>
  <div class="not-allow">
    <slot>
      <div class="content">
        <img src="../../assets/images/not-allow.png">
        <h2>无权访问</h2>
        <p>如您需要访问该页面,请联系系统管理员</p>
      </div>
    </slot>
  </div>
</template>
 
<script>
export default {
  name: 'NotAllow'
}
</script>
 
<style scoped lang="scss">
.not-allow {
  height: 100%;
  background: #fff;
  box-sizing: border-box;
  padding-top: 160px;
  .content {
    height: 200px;
    text-align: center;
    h2 {
      font-size: 18px;
      font-weight: normal;
      margin-top: 8px;
    }
    p {
      font-size: 13px;
      color: #999;
      margin: 6px 0;
    }
  }
}
</style>