|
@@ -6,31 +6,22 @@ |
|
@@ -6,31 +6,22 @@ |
|
6
|
<el-row>
|
6
|
<el-row>
|
|
7
|
<el-col :span="12">
|
7
|
<el-col :span="12">
|
|
8
|
<h1 class="text-jumbo text-ginormous">
|
8
|
<h1 class="text-jumbo text-ginormous">
|
|
9
|
- Oops!
|
9
|
+ 401错误!
|
|
10
|
</h1>
|
10
|
</h1>
|
|
11
|
- gif来源<a href="https://zh.airbnb.com/" target="_blank">airbnb</a> 页面
|
|
|
|
12
|
- <h2>你没有权限去该页面</h2>
|
|
|
|
13
|
- <h6>如有不满请联系你领导</h6>
|
11
|
+ <h2>您没有访问权限!</h2>
|
|
|
|
12
|
+ <h6>对不起,您没有访问权限,请不要进行非法操作!您可以返回主页面</h6>
|
|
14
|
<ul class="list-unstyled">
|
13
|
<ul class="list-unstyled">
|
|
15
|
- <li>或者你可以去:</li>
|
|
|
|
16
|
<li class="link-type">
|
14
|
<li class="link-type">
|
|
17
|
- <router-link to="/dashboard">
|
15
|
+ <router-link to="/">
|
|
18
|
回首页
|
16
|
回首页
|
|
19
|
</router-link>
|
17
|
</router-link>
|
|
20
|
</li>
|
18
|
</li>
|
|
21
|
- <li class="link-type">
|
|
|
|
22
|
- <a href="https://www.taobao.com/">随便看看</a>
|
|
|
|
23
|
- </li>
|
|
|
|
24
|
- <li><a href="#" @click.prevent="dialogVisible=true">点我看图</a></li>
|
|
|
|
25
|
</ul>
|
19
|
</ul>
|
|
26
|
</el-col>
|
20
|
</el-col>
|
|
27
|
<el-col :span="12">
|
21
|
<el-col :span="12">
|
|
28
|
<img :src="errGif" width="313" height="428" alt="Girl has dropped her ice cream.">
|
22
|
<img :src="errGif" width="313" height="428" alt="Girl has dropped her ice cream.">
|
|
29
|
</el-col>
|
23
|
</el-col>
|
|
30
|
</el-row>
|
24
|
</el-row>
|
|
31
|
- <el-dialog :visible.sync="dialogVisible" title="随便看">
|
|
|
|
32
|
- <img :src="ewizardClap" class="pan-img">
|
|
|
|
33
|
- </el-dialog>
|
|
|
|
34
|
</div>
|
25
|
</div>
|
|
35
|
</template>
|
26
|
</template>
|
|
36
|
|
27
|
|
|
@@ -41,15 +32,13 @@ export default { |
|
@@ -41,15 +32,13 @@ export default { |
|
41
|
name: 'Page401',
|
32
|
name: 'Page401',
|
|
42
|
data() {
|
33
|
data() {
|
|
43
|
return {
|
34
|
return {
|
|
44
|
- errGif: errGif + '?' + +new Date(),
|
|
|
|
45
|
- ewizardClap: 'https://wpimg.wallstcn.com/007ef517-bafd-4066-aae4-6883632d9646',
|
|
|
|
46
|
- dialogVisible: false
|
35
|
+ errGif: errGif + '?' + +new Date()
|
|
47
|
}
|
36
|
}
|
|
48
|
},
|
37
|
},
|
|
49
|
methods: {
|
38
|
methods: {
|
|
50
|
back() {
|
39
|
back() {
|
|
51
|
if (this.$route.query.noGoBack) {
|
40
|
if (this.$route.query.noGoBack) {
|
|
52
|
- this.$router.push({ path: '/dashboard' })
|
41
|
+ this.$router.push({ path: '/' })
|
|
53
|
} else {
|
42
|
} else {
|
|
54
|
this.$router.go(-1)
|
43
|
this.$router.go(-1)
|
|
55
|
}
|
44
|
}
|