64 lines
2.3 KiB
Plaintext
64 lines
2.3 KiB
Plaintext
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||
|
|
pageEncoding="UTF-8"%>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}" />
|
||
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
|
||
|
|
<title>没有权限访问</title>
|
||
|
|
<link rel="shortcut icon" href="/pqs9900/images/favicon.ico" type="image/x-icon"/>
|
||
|
|
<link rel="stylesheet" href="${ctx}/css/plugin/bootstrap/bootstrap.css">
|
||
|
|
<link rel="stylesheet" href="${ctx}/css/basic.css">
|
||
|
|
<style>
|
||
|
|
body,html{
|
||
|
|
background-color: #ccc;
|
||
|
|
}
|
||
|
|
#errorCode{
|
||
|
|
font-family: 'wuxin',serif !important;
|
||
|
|
line-height: 280%;
|
||
|
|
}
|
||
|
|
#errorMsg{
|
||
|
|
font-size: 30px;
|
||
|
|
}
|
||
|
|
.aBlank{
|
||
|
|
color: blue;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container-fluid" >
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2" id="main">
|
||
|
|
<div class="row pd15" id="mainCode">
|
||
|
|
<div class="col-sm-8 col-sm-offset-2 col-md-8 col-md-offset-2">
|
||
|
|
<div style="margin: 0 auto">
|
||
|
|
<img src="${ctx}/images/img/error.png" class="fl">
|
||
|
|
<div class="fl mt20 ml20" id="errorCode">
|
||
|
|
<p id="errorMsg">没有访问该资源的权限</p>
|
||
|
|
<p>请联系管理员</p>
|
||
|
|
<p><a class="aBlank" href="/sso">重新登录</a></p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script src="${ctx}/js/plugin/jquery/jquery.min.js"></script>
|
||
|
|
<script src="${ctx}/jspJS/utils/judgeAjaxStatus.js"></script>
|
||
|
|
<script>
|
||
|
|
var $main=$("#main");
|
||
|
|
var $mainCode=$("#mainCode");
|
||
|
|
$(function () {
|
||
|
|
var height=$(window).height();
|
||
|
|
$main.eq(0).css("margin-top",height*0.1);
|
||
|
|
$mainCode.eq(0).css("margin-top",height*0.1);
|
||
|
|
$main.eq(0).css("height",height*0.8);
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|