gin-vue-admin/QMPlusVuePage/src/view/error/index.vue

44 lines
902 B
Vue
Raw Normal View History

2019-09-08 23:22:49 +08:00
<template>
<div>
2020-01-02 18:12:07 +08:00
<div class="big">
<div class="inner">
<img src="../../assets/notFound.png">
<p>页面被神秘力量吸走了请联系我们修复</p>
<p></p>
<img src="../../assets/qm.png" class="leftPic">
</div>
</div>
2019-09-08 23:22:49 +08:00
</div>
</template>
<script>
export default {
name:"Login"
}
</script>
2020-01-02 18:12:07 +08:00
<style lang="scss">
.big{
width: 100%;
height: 100vh;
background-color: rgb(244,244,244);
position: relative;
}
.inner{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.inner p {
text-align: center;
font-size: 24px;
}
.inner .leftPic{
width: 60px;
height: 60px;
margin-left: 44%;
margin-top: 20px;
}
2019-09-08 23:22:49 +08:00
</style>