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
<template>
<div class="poin-404">
<img :src="publicPath + '/static/images/shalou2.gif'">
<h1>系统异常,或页面跑丢了!</h1>
</div>
</template>
<script type="text/javascript">
const publicPath = require('@/config/isc-publicPath.js')
export default {
data () {
return {
publicPath: publicPath
}
},
components: {
},
methods : {
}
}
</script>
<style type="text/css">
.poin-404 {
position:absolute;
left: 50%;
top: 45%;
transform: translate(-50%,-50%);
text-align: center;
}
.poin-404 h1 {
color: #888;
font-family: Microsoft Yahei;
font-size: 30px;
}
</style>