-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (106 loc) · 3.82 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>大连市公安局高新园区分局 - 地理信息系统</title>
<link href="js/miniui/themes/default/miniui.css" rel="stylesheet" type="text/css">
<link href="js/miniui/themes/icons.css" rel="stylesheet" type="text/css">
<script language="javascript" src="js/jquery.min.js"></script>
<script language="javascript" src="js/miniui/miniui.js"></script>
<script language="javascript" src="js/gis.js"></script>
<script language="javascript">
<!--
if (top.location != self.location) {top.location=self.location;}
-->
</script>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<style type="text/css">
html, body{
padding:0;
border:0;
margin:0;
width:100%;
height:100%;
overflow:hidden;
font-family:Verdana;
font-size:12px;
line-height:22px;
}
.header{
background:url(images/header.gif) repeat-x 0 -1px;
}
body .header .topNav
{
position:absolute;right:8px;top:10px;
font-size:12px;
line-height:25px;
}
.header .topNav a
{
text-decoration:none;
color:#222;
font-weight:normal;
font-size:12px;
line-height:25px;
margin-left:3px;
margin-right:3px;
}
.header .topNav a:hover
{
text-decoration:underline;
color:Blue;
}
</style>
</head>
<body>
<div id="layout1" class="mini-layout" style="width:100%;height:100%;">
<div class="header" region="north" height="60" showSplit="false" showHeader="false" showSplitIcon="true">
<h1 style="margin:0;padding:15px;cursor:default;font-family:'Trebuchet MS',Arial,sans-serif;float:left;">
<a style="cursor:pointer;" onclick="onPageOpenDefault()">大连市公安局高新园区分局 - 地理信息系统(单机版)</a>
</h1>
<div class="topNav">
<!-- top nav-->
</div>
<div style="position:absolute;right:12px;bottom:0px;font-size:12px;line-height:20px;font-weight:normal;">
<span style="color:Red;font-family:Tahoma">更换皮肤:</span>
<select id="selectSkin" onchange="onSkinChange(this.value)" style="width:100px;" >
<option value="">默认</option>
<option value="blue">经典蓝</option>
<option value="gray">经典灰</option>
<option value="olive2003">橄榄绿</option>
<option value="blue2003">深蓝</option>
<option value="blue2010">灰蓝</option>
<option value="bootstrap">清爽</option>
</select>
</div>
</div>
<div region="south" showSplit="false" showHeader="false" height="30" showSplitIcon="true">
<div style="line-height:28px;text-align:center;cursor:default">版权所有 © 大连市公安局高新园区分局</div>
</div>
<div showHeader="false" region="west" width="180" maxWidth="250" minWidth="100" style="border:0;" showSplitIcon="true">
<!--Outlook Menu-->
<div class="mini-outlookmenu" url="sys/menu.txt" activeIndex="0" onItemSelect="onItemSelect" idField="id" parentField="pid" textField="text" >
</div>
</div>
<div title="center" region="center" bodyStyle="overflow:hidden;">
<iframe id="mainframe" frameborder="0" name="main" style="width:100%;height:100%;" border="0"></iframe>
</div>
</div>
<script>
//Disable miniui expired alerts
var WinAlerts = window.alert;
window.alert = function (e) {
return;
};
mini.parse();
//init iframe src
var iframe = document.getElementById("mainframe");
iframe.src = "main.html";
function onItemSelect(e) {
var item = e.item;
iframe.src = item.url;
}
function onPageOpenDefault(){
}
</script>
</body>
</html>