map.html
1.35 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>网站地图</title>
</head>
<style>
body, ul, ol, li, dl, dt, dd, p, h1, h2, h3, h4, h5, h6, form, fieldset {
margin: 0;
padding: 0;
}
#dialog {
verflow: hidden;
background: #FFF;
padding: 5px;
position: absolute;
z-index: 100;
}
#dialog .mcontent {
clear: both;
padding: 5px 20px;
overflow: auto;
}
#dialog dl {
width: 90px;
float: left;
overflow: hidden;
}
#dialog dt {
font-size: 14px;
font-weight: bold;
color: #67027D;
line-height: 32px;
padding-left: 2px;
text-align:center;
}
#dialog dd {
text-align:center;
height: 24px;
}
#dialog dd a {
line-height: 20px;
padding: 2px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
color: #0D93BF;
text-decoration: none;
font-size:12px;
}
</style>
<body>
<div id="dialog">
<div class="mcontent">
<foreach name="all_menu" item="vo" key="k" >
<dl>
<dt>{$vo.title}</dt>
<foreach name="vo.submenu" item="vv" key="kk">
<dd><a href="javascript:void(0)" onclick="javascript:window.parent.callUrl('{$vv.url}');">{$vv.title}</a></dd>
</foreach>
</dl>
</foreach>
</div>
</div>
</body>
</html>