状态码添加
This commit is contained in:
parent
3d2bfb8a25
commit
f299a61914
|
@ -23,20 +23,20 @@ const router = createRouter({
|
|||
},
|
||||
{
|
||||
name: "403",
|
||||
path: "/403",
|
||||
component: () => import("../views/error/403.vue"),
|
||||
path: "/error/403",
|
||||
component: () => import("../view/error/403.vue"),
|
||||
// meta: { page_id: 6, page_name: "403" },
|
||||
},
|
||||
{
|
||||
name: "404",
|
||||
path: "/404",
|
||||
component: () => import("../views/error/404.vue"),
|
||||
path: "/error/404",
|
||||
component: () => import("../view/error/404.vue"),
|
||||
// meta: { page_id: 7, page_name: "404" },
|
||||
},
|
||||
{
|
||||
name: "500",
|
||||
path: "/500",
|
||||
component: () => import("../views/error/500.vue"),
|
||||
path: "/error/500",
|
||||
component: () => import("../view/error/500.vue"),
|
||||
// meta: { page_id: 8, page_name: "500" },
|
||||
},
|
||||
{
|
||||
|
|
|
@ -2,45 +2,14 @@
|
|||
<div class="error_main">
|
||||
<img class="error_main_img" src="@/assets/errorImg/error3.png" alt="" />
|
||||
<div class="error_main_content">请求未验证,请联系管理员</div>
|
||||
<div class="unit">
|
||||
<div>
|
||||
<!-- 应用归属单位 -->
|
||||
应用归属单位
|
||||
</div>
|
||||
<div>
|
||||
<!-- 象山县委宣传部 -->
|
||||
象山县城市建设投资集团有限公司
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="unit">
|
||||
<div>
|
||||
<!-- 应用管理员 -->
|
||||
应用管理员
|
||||
</div>
|
||||
<div>
|
||||
<!-- 陈金裕 -->
|
||||
姚杰
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="unit">
|
||||
<div>
|
||||
<!-- 联系方式 -->
|
||||
联系方式
|
||||
</div>
|
||||
<div>
|
||||
<!-- 13806654654 -->
|
||||
15888067199
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
<style lang="scss">
|
||||
.error_main {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
padding: 30px 30px 0;
|
||||
padding: 200px 30px 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -4,45 +4,14 @@
|
|||
<div class="error_main_content">
|
||||
抱歉,您暂无当前页面的访问权限,请联系管理员
|
||||
</div>
|
||||
<div class="unit">
|
||||
<div>
|
||||
<!-- 应用归属单位 -->
|
||||
应用归属单位
|
||||
</div>
|
||||
<div>
|
||||
<!-- 象山县委宣传部 -->
|
||||
象山县城市建设投资集团有限公司
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="unit">
|
||||
<div>
|
||||
<!-- 应用管理员 -->
|
||||
应用管理员
|
||||
</div>
|
||||
<div>
|
||||
<!-- 陈金裕 -->
|
||||
姚杰
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="unit">
|
||||
<div>
|
||||
<!-- 联系方式 -->
|
||||
联系方式
|
||||
</div>
|
||||
<div>
|
||||
<!-- 13806654654 -->
|
||||
15888067199
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
<style lang="scss">
|
||||
.error_main {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
padding: 30px 30px 0;
|
||||
padding: 200px 30px 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
.error_main {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
padding: 30px 30px 0;
|
||||
padding: 200px 30px 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
<style lang="scss">
|
||||
.error_main {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
padding: 30px 30px 0;
|
||||
max-width: 536px;
|
||||
padding: 200px 30px 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -160,10 +160,10 @@ const login = () => {
|
|||
.catch((err) => {
|
||||
console.log(err);
|
||||
// var token = getCookie("lytoken");
|
||||
var token = '6b0e380b4a8f46baae4923f83faf670d';
|
||||
router.push({
|
||||
path: `/error/404`,
|
||||
});
|
||||
var token = "6b0e380b4a8f46baae4923f83faf670d";
|
||||
// router.push({
|
||||
// path: `/error/404`,
|
||||
// });
|
||||
// console.log('token', token)
|
||||
if (!token) {
|
||||
window.location.href =
|
||||
|
|
Loading…
Reference in New Issue