<!DOCTYPE html>
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:layout="http://www.w3.org/1999/xhtml"
|
xmlns:th="http://www.thymeleaf.org">
|
<head>
|
<meta charset="UTF-8"/>
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
<title th:text="${systemName}"></title>
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
<meta content="" name="description"/>
|
<meta content="" name="author"/>
|
|
<link rel="stylesheet" th:href="@{${pubzyWebRoot} + 'BootStrap4/assets/css/style.css'}"/>
|
<link rel="stylesheet" th:href="@{${pubzyWebRoot} + 'BootStrap4/expand/css/bootstrap-extract.css'}"/>
|
<link th:href="@{${pubzyWebRoot} + 'media/css/landtool.css'}" rel="stylesheet" type="text/css" id="style_color"/>
|
<link rel="shortcut icon" th:href="@{${pubzyWebRoot} + 'media/image/favicon.ico'}"/>
|
<script th:src="@{${pubzyWebRoot} + 'media/js/jquery-1.11.1.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/expand/plugins/layer/layer.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/tether.min.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/bootstrap.min.js'}"></script>
|
<style>
|
|
body {
|
background-color: white !important;
|
}
|
|
#menu a {
|
margin: 0;
|
padding-left: 0px;
|
padding-right: 0px;
|
}
|
|
@media (max-width: 1279px) {
|
#menu_aqtc {
|
display: none;
|
}
|
|
#menu_xtsz {
|
display: none;
|
}
|
}
|
|
/*.header.navbar-fixed-top {*/
|
/*z-index: 2 !important;*/
|
/*}*/
|
|
/*底部边距(原版权区域)*/
|
.page-footer-fixed .page-container {
|
margin-bottom: 0 !important;
|
}
|
|
body {
|
padding-bottom: 0px !important;
|
background: white;
|
font-family: "Microsoft Yahei",'微软雅黑',"Roboto", sans-serif !important;
|
}
|
|
/*
|
* 头部菜单样式
|
*/
|
|
#topTitle {
|
color: #02136d;
|
text-align: center;
|
font-size: 20px;
|
font-weight: 600;
|
}
|
|
.bg {
|
width: 282px;
|
background: url(/image/TopMenu/NewMenu/user_bg.png) no-repeat center;
|
color: #fff;
|
height: 40px;
|
line-height: 40px;
|
text-align: center;
|
/*padding: 0 10px !important;*/
|
border-bottom-left-radius: 3px;
|
border-bottom-right-radius: 3px;
|
float: right;
|
}
|
|
#wrapper {
|
position: relative;
|
}
|
|
#bts_pagebody {
|
width: 1420px;
|
margin: 0 auto;
|
}
|
|
.TopMenuBtn {
|
float: left;
|
width: 112px;
|
margin-left: 20px;
|
}
|
|
#div_foot {
|
height: 50px;
|
line-height: 50px;
|
background-color: #107CE1;
|
color: #fff;
|
font-size: 15px;
|
margin-top: 55px;
|
}
|
|
/*#div_bg {*/
|
/*width: 100%;*/
|
/*background-color: white;*/
|
/*position: absolute;*/
|
/*top: 360px;*/
|
/*}*/
|
|
</style>
|
|
<script>
|
window.onload = function() {
|
// $("#div_bg").css("height",$("#pagebody").height() + 50 +'px')
|
}
|
</script>
|
</head>
|
<body class="page-header-fixed page-sidebar-fixed page-footer-fixed">
|
<div id="wrapper" style="min-width: 1420px;">
|
<div class="header navbar navbar-inverse" style="border:none;padding: 0;">
|
<div th:replace="MasterPage/New/Header :: TopMenu"></div>
|
</div>
|
<!--<div id="div_bg"></div>-->
|
<div id="pagebody" style="width: 100%;position: absolute;top: 245px;">
|
<div id="bts_pagebody" class="page-container row" layout:fragment="content">
|
</div>
|
<div id="div_foot" style="width:100%; text-align:center;">
|
<div th:replace="MasterPage/New/footer :: copyright"></div>
|
</div>
|
</div>
|
|
</div>
|
<script th:inline="javascript">
|
/*<![CDATA[*/
|
var backstageWebRoot = [[${backstageWebRoot}]];
|
var gisPortal = [[${gisPortal}]];
|
var staticFileRoot = "";
|
var resizefunc = [];
|
var curMenu = "";
|
|
jQuery(document).ready(function () {
|
// 默认,菜单栏鼠标事件
|
$(".TopMenuBtn").bind("mousemove", function () {
|
var img = $(this).find("img").attr("src");
|
if (img.indexOf("_on.png") < 0) {
|
var onImg = img.substring(0, img.indexOf('.')) + "_on.png";
|
$(this).find("img").prop("src", onImg);
|
}
|
}).bind("mouseout", function () {
|
var img = $(this).find("img").attr("src");
|
if (img.indexOf('_on') != -1) {
|
$(this).find("img").prop("src", img.replace("_on", ""));
|
}
|
})
|
});
|
|
$(function () {
|
|
//获取登录用户中文名
|
$.ajax({
|
url: '/sys/user/getUserName',
|
type: "GET",
|
dataType: 'jsonp',
|
callback: "callback",
|
data: {},
|
success: function (data) {
|
$("#UserName").text(data.msg);
|
},
|
error: function (e) {
|
alert("获取登录用户信息失败!");
|
}
|
});
|
|
//菜单栏判断放中间还是浮动在上层靠右显示 alter ykm 2018/12/10
|
menufun();
|
window.onresize = function () {
|
menufun();
|
}
|
});
|
|
// 菜单栏点击事件
|
function redirectUrl(url) {
|
window.open(url, "_blank");
|
}
|
|
function menufun() {
|
var x = document.body.clientWidth;
|
if (x - 653 < 500) {
|
$("#logo_div").css("float", "");
|
$("#menu").css("margin-left", "");
|
$("#menu").css("margin-top", "-92px");
|
|
$("#menu_div").css("float", "right");
|
$("#menu_div").css("position", "relative");
|
$("#menu_div").css("z-index", "1");
|
}
|
else {
|
$("#logo_div").css("float", "left");
|
$("#menu").css("margin-left", "652px");
|
$("#menu").css("margin-top", "");
|
|
$("#menu_div").css("float", "");
|
$("#menu_div").css("position", "");
|
$("#menu_div").css("z-index", "");
|
}
|
}
|
|
function openlinks(url, id) {
|
var linkurl = url.replace("~/", "") + '?menuId=' + id;
|
var ms = '~/' + linkurl;
|
parent.window.location.href = ms;
|
}
|
|
//获取参数值
|
function GetArgument(argu, filed) {
|
var result = "";
|
var arr = argu.split('&');
|
for (var i = 0; i < arr.length; i++) {
|
if (arr[i].indexOf(filed) > -1) {
|
result = arr[i].split('=')[1];
|
}
|
}
|
return result;
|
}
|
|
//跳转链接
|
function OpenLink(url) {
|
window.location.href = url;
|
}
|
|
//弹出修改密码窗口
|
function openPasswordChangeLayer() {
|
layer.open({
|
type: 2,
|
skin: 'layui-layer-molv',
|
title: "修改密码",
|
shadeClose: true,
|
shade: false,
|
area: ["550px", "270px"],
|
content: backstageWebRoot + "lanwebapp/admin/modifypassword.html"
|
});
|
}
|
|
//弹出修改个人信息窗口
|
function openUserInfoChangeLayer() {
|
window.open(backstageWebRoot + "lanwebapp/admin/userinfo_edit.html", "_blank");
|
}
|
|
function openNewWinLink(type) {
|
window.open(gisPortal + type, "_blank");
|
}
|
|
/*]]>*/
|
</script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/detect.js'}"></script>
|
<!-- jQuery.browser.mobile will be true if the browser is a mobile device -->
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/fastclick.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/jquery.slimscroll.js'}"></script>
|
|
<!-- App js -->
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/jquery.app.js'}"></script>
|
<!-- 自动登录Portal地图服务 lxb -->
|
<!-- <iframe src="https://gis.nmsmp.com/arcgis/ltGisPortal/viewer/sso_auth.html?redirectUrl=http%3A%2F%2Fgis.nmsmp.com%2Farcgis%2FltGisPortal%2Fviewer%2FloginSucced.html"
|
style="visibility: hidden;position: absolute; z-index: 1"></iframe> -->
|
|
<iframe src="https://localhost:8080/viewer/sso_auth.html?redirectUrl=http%3A%2F%2Flocalhost:8080%2Fviewer%2FloginSucced.html" style="visibility: hidden;position: absolute; z-index: 1"></iframe>
|
|
</body>
|
</html>
|