Skip to content

Instantly share code, notes, and snippets.

@liujuntao123
Created March 22, 2024 08:43
Show Gist options
  • Save liujuntao123/0572c6ebcdc6942eee586a705f1c9608 to your computer and use it in GitHub Desktop.
Save liujuntao123/0572c6ebcdc6942eee586a705f1c9608 to your computer and use it in GitHub Desktop.
<template>
<div>
<simple-header></simple-header>
<div class="content">
<img src="@/assets/images/401.png" alt="" />
<div class="img-text">
<p>暂无访问权限,请联系管理员申请</p>
</div>
</div>
</div>
</template>
<script setup>
import simpleHeader from '@/components/simpleHeader.vue';
</script>
<style lang="less" scoped>
.content {
height: calc(100vh - 51px) !important;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
position: relative;
background: #fff;
}
img {
width: 416px;
}
.img-text {
margin-top: -100px;
}
p {
width: 100%;
text-align: center;
&:nth-of-type(1) {
font-size: 28px;
line-height: 34px;
font-weight: 600;
}
&:nth-of-type(2) {
margin-top: 16px;
font-size: 18px;
color: #606972;
line-height: 20px;
span {
color: #178cf9;
cursor: pointer;
}
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment