index.asp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. <!--#include file="Conn.asp"--><%Checklogin("")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link rel="stylesheet" href="css/common.css" type="text/css" />
  6. <%
  7. iframe = Request.QueryString("iframe")
  8. Select Case iframe
  9. Case "top":
  10. %>
  11. <title><%=webname%> - 网站后台管理</title>
  12. </head>
  13. <body>
  14. <h1 style="padding:0;margin:0;height:50px;line-height:50px;text-indent:20px;font-size:20px;font-family:Arial;color:#0099CC"><%=webname%></h1>
  15. </body>
  16. <%
  17. Case "left":
  18. %>
  19. <title>左侧导航栏</title>
  20. </head>
  21. <script type="text/javascript">
  22. var preClassName = "";
  23. function list_sub_detail(Id, item)
  24. {
  25. if(preClassName != "")
  26. {
  27. getObject(preClassName).className = "left_back"
  28. }
  29. if(getObject(Id).className == "left_back")
  30. {
  31. getObject(Id).className = "left_back_onclick";
  32. outlookbar.getbyitem(item);
  33. preClassName = Id
  34. }
  35. }
  36. function getObject(objectId)
  37. {
  38. if(document.getElementById && document.getElementById(objectId))
  39. {
  40. return document.getElementById(objectId)
  41. }
  42. else if(document.all && document.all(objectId))
  43. {
  44. return document.all(objectId)
  45. }
  46. else if(document.layers && document.layers[objectId])
  47. {
  48. return document.layers[objectId]
  49. }
  50. else
  51. {
  52. return false
  53. }
  54. }
  55. function outlook()
  56. {
  57. this.titlelist = new Array();
  58. this.itemlist = new Array();
  59. this.addtitle = addtitle;
  60. this.additem = additem;
  61. this.getbytitle = getbytitle;
  62. this.getbyitem = getbyitem;
  63. this.getdefaultnav = getdefaultnav
  64. }
  65. function theitem(intitle, insort, inkey, inisdefault)
  66. {
  67. this.sortname = insort;
  68. this.key = inkey;
  69. this.title = intitle;
  70. this.isdefault = inisdefault
  71. }
  72. function addtitle(intitle, sortname, inisdefault)
  73. {
  74. outlookbar.itemlist[outlookbar.titlelist.length] = new Array();
  75. outlookbar.titlelist[outlookbar.titlelist.length] = new theitem(intitle, sortname, 0, inisdefault);
  76. return(outlookbar.titlelist.length - 1)
  77. }
  78. function additem(intitle, parentid, inkey)
  79. {
  80. if(parentid >= 0 && parentid <= outlookbar.titlelist.length)
  81. {
  82. insort = "item_" + parentid;
  83. outlookbar.itemlist[parentid][outlookbar.itemlist[parentid].length] = new theitem(intitle, insort, inkey, 0);
  84. return(outlookbar.itemlist[parentid].length - 1)
  85. }
  86. else additem = - 1
  87. }
  88. function getdefaultnav(sortname)
  89. {
  90. var output = "";
  91. for(i = 0; i < outlookbar.titlelist.length; i ++ )
  92. {
  93. if(outlookbar.titlelist[i].isdefault == 1 && outlookbar.titlelist[i].sortname == sortname)
  94. {
  95. output += "<div class=list_tilte id=sub_sort_" + i + " onclick=\"hideorshow('sub_detail_"+i+"')\">";
  96. output += "<span>" + outlookbar.titlelist[i].title + "</span>";
  97. output += "</div>";
  98. output += "<div class=list_detail id=sub_detail_" + i + "><ul>";
  99. for(j = 0; j < outlookbar.itemlist[i].length; j ++ )
  100. {
  101. output += "<li id=" + outlookbar.itemlist[i][j].sortname + j + " onclick=\"changeframe('"+outlookbar.itemlist[i][j].title+"', '"+outlookbar.titlelist[i].title+"', '"+outlookbar.itemlist[i][j].key+"')\"><a href=#>" + outlookbar.itemlist[i][j].title + "</a></li>"
  102. }
  103. output += "</ul></div>"
  104. }
  105. }
  106. getObject('right_main_nav').innerHTML = output
  107. }
  108. function getbytitle(sortname)
  109. {
  110. var output = "<ul>";
  111. for(i = 0; i < outlookbar.titlelist.length; i ++ )
  112. {
  113. if(outlookbar.titlelist[i].sortname == sortname)
  114. {
  115. output += "<li id=left_nav_" + i + " onclick=\"list_sub_detail(id, '"+outlookbar.titlelist[i].title+"')\" class=left_back>" + outlookbar.titlelist[i].title + "</li>"
  116. }
  117. }
  118. output += "</ul>";
  119. getObject('left_main_nav').innerHTML = output
  120. }
  121. function getbyitem(item)
  122. {
  123. var output = "";
  124. for(i = 0; i < outlookbar.titlelist.length; i ++ )
  125. {
  126. if(outlookbar.titlelist[i].title == item)
  127. {
  128. output = "<div class=list_tilte id=sub_sort_" + i + " onclick=\"hideorshow('sub_detail_"+i+"')\">";
  129. output += "<span>" + outlookbar.titlelist[i].title + "</span>";
  130. output += "</div>";
  131. output += "<div class=list_detail id=sub_detail_" + i + " style='display:block;'><ul>";
  132. for(j = 0; j < outlookbar.itemlist[i].length; j ++ )
  133. {
  134. output += "<li id=" + outlookbar.itemlist[i][j].sortname + "_" + j + " onclick=\"changeframe('"+outlookbar.itemlist[i][j].title+"', '"+outlookbar.titlelist[i].title+"', '"+outlookbar.itemlist[i][j].key+"')\"><a href=#>" + outlookbar.itemlist[i][j].title + "</a></li>"
  135. }
  136. output += "</ul></div>"
  137. }
  138. }
  139. getObject('right_main_nav').innerHTML = output
  140. }
  141. function changeframe(item, sortname, src)
  142. {
  143. if(item != "" && sortname != "")
  144. {
  145. window.top.frames['mainFrame'].getObject('show_text').innerHTML = sortname + " <img src=images/slide.gif broder=0 /> " + item
  146. }
  147. if(src != "")
  148. {
  149. window.top.frames['manFrame'].location = src
  150. }
  151. }
  152. function hideorshow(divid)
  153. {
  154. subsortid = "sub_sort_" + divid.substring(11);
  155. if(getObject(divid).style.display == "none")
  156. {
  157. getObject(divid).style.display = "block";
  158. getObject(subsortid).className = "list_tilte"
  159. }
  160. else
  161. {
  162. getObject(divid).style.display = "none";
  163. getObject(subsortid).className = "list_tilte_onclick"
  164. }
  165. }
  166. function initinav(sortname)
  167. {
  168. outlookbar.getdefaultnav(sortname);
  169. outlookbar.getbytitle(sortname);
  170. //window.top.frames['manFrame'].location = "manFrame.html"
  171. }
  172. var outlookbar=new outlook();
  173. var t;
  174. //t=outlookbar.addtitle('单页管理','信息管理',1)
  175. //<%If Chklogin("单页管理") Then%>outlookbar.additem('打开单页列表',t,'pages.asp');<%End If%>
  176. //t=outlookbar.addtitle('分类管理','信息管理',1)
  177. //<%If Chklogin("信息管理") Then%>outlookbar.additem('一级产品分类',t,'topClass.asp');<%End If%>
  178. //<%If Chklogin("信息管理") Then%>outlookbar.additem('二级产品分类',t,'class.asp');<%End If%>
  179. //<%If Chklogin("信息管理") Then%>outlookbar.additem('品牌分类',t,'brand.asp');<%End If%>
  180. //<%If Chklogin("信息管理") Then%>outlookbar.additem('属性管理',t,'property.asp');<%End If%>
  181. //<%If Chklogin("信息管理") Then%>outlookbar.additem('适用设备',t,'device.asp');<%End If%>
  182. t=outlookbar.addtitle('信息管理','信息管理',1)
  183. <%If Chklogin("信息管理") Then%>outlookbar.additem('来源管理',t,'qudao.asp');<%End If%>
  184. <%If Chklogin("信息管理") Then%>outlookbar.additem('客户列表',t,'customers.asp');<%End If%>
  185. <%If Chklogin("信息管理") Then%>outlookbar.additem('数据看板',t,'dashboard.asp');<%End If%>
  186. <%If Chklogin("信息管理") Then%>outlookbar.additem('登录日志',t,'log.asp');<%End If%>
  187. t=outlookbar.addtitle('报价管理','信息管理',1)
  188. <%If Chklogin("信息管理") Then%>outlookbar.additem('添加产品',t,'products.asp');<%End If%>
  189. <%If Chklogin("信息管理") Then%>outlookbar.additem('报价管理',t,'country.asp');<%End If%>
  190. //<%If Chklogin("信息管理") Then%>outlookbar.additem('添加产品',t,'product.asp?act=add');<%End If%>
  191. t=outlookbar.addtitle('系统管理','其它管理',1)
  192. <%If Chklogin("系统管理") Then%>
  193. outlookbar.additem('查看系统设置',t,'inc.asp')
  194. //outlookbar.additem('Banner设置',t,'advertisement.asp')
  195. //outlookbar.additem('单页内容',t,'page.asp')
  196. <%End If%>
  197. t=outlookbar.addtitle('权限管理','其它管理',1)
  198. <%If Chklogin("权限管理") Then%>
  199. outlookbar.additem('员工管理',t,'employee.asp')
  200. //outlookbar.additem('打开权限列表',t,'power.asp')
  201. //outlookbar.additem('添加新的权限',t,'power.asp?act=add')
  202. <%End If%>
  203. //t=outlookbar.addtitle('客户留言','其它管理',1)
  204. //<%If Chklogin("权限管理") Then%>
  205. //outlookbar.additem('客户留言',t,'enquiry.asp')
  206. //<%End If%>
  207. //t=outlookbar.addtitle('友情链接','其它管理',1)
  208. //<%If Chklogin("系统管理") Then%>
  209. //outlookbar.additem('友情链接管理',t,'links.asp')
  210. //<%End If%>
  211. </script>
  212. <body onload="initinav('信息管理')">
  213. <div id="left_content">
  214. <div id="user_info">欢迎您,<strong><%=Load_Session("loginname")%></strong><br />[<a href="pwd.asp" target="manFrame">个人中心</a>,<a href="login.asp?act=logout" target="_top" onClick="if(!confirm('确认要退出吗?'))return false;">退出管理</a>]</div>
  215. <div id="main_nav">
  216. <div id="left_main_nav"></div>
  217. <div id="right_main_nav"></div>
  218. </div>
  219. </div>
  220. </body>
  221. <%
  222. Case "switch":
  223. %>
  224. <title>显示/隐藏左侧导航栏</title>
  225. </head>
  226. <script language="JavaScript">
  227. function Submit_onclick(){
  228. if(parent.myFrame.cols == "199,7,*") {
  229. parent.myFrame.cols="0,7,*";
  230. document.getElementById("ImgArrow").src="images/switch_right.gif";
  231. document.getElementById("ImgArrow").alt="打开左侧导航栏";
  232. } else {
  233. parent.myFrame.cols="199,7,*";
  234. document.getElementById("ImgArrow").src="images/switch_left.gif";
  235. document.getElementById("ImgArrow").alt="隐藏左侧导航栏";
  236. }
  237. }
  238. function MyLoad() {
  239. if(window.parent.location.href.indexOf("MainUrl")>0) {
  240. window.top.midFrame.document.getElementById("ImgArrow").src="images/switch_right.gif";
  241. }
  242. }
  243. </script>
  244. <body onload="MyLoad()">
  245. <div id="switchpic"><a href="javascript:Submit_onclick()"><img src="images/switch_left.gif" alt="隐藏左侧导航栏" id="ImgArrow" /></a></div>
  246. </body>
  247. <%
  248. Case "main"
  249. %>
  250. <title>管理导航区域</title>
  251. <script type="text/javascript">
  252. var preClassName = "man_nav_1";
  253. function list_sub_nav(Id,sortname){
  254. if(preClassName != ""){
  255. getObject(preClassName).className="bg_image";
  256. }
  257. if(getObject(Id).className == "bg_image"){
  258. getObject(Id).className="bg_image_onclick";
  259. preClassName = Id;
  260. showInnerText(Id);
  261. window.top.frames['leftFrame'].outlookbar.getbytitle(sortname);
  262. window.top.frames['leftFrame'].outlookbar.getdefaultnav(sortname);
  263. }
  264. }
  265. function showInnerText(Id){
  266. var switchId = parseInt(Id.substring(8));
  267. var showText = "对不起没有信息!";
  268. switch(switchId){
  269. case 1:
  270. showText = "请点击左侧菜单进行网站信息管理";
  271. break;
  272. case 2:
  273. showText = "请点击左侧菜单进行其它信息管理";
  274. break;
  275. }
  276. getObject('show_text').innerHTML = showText;
  277. }
  278. //获取对象属性兼容方法
  279. function getObject(objectId) {
  280. if(document.getElementById && document.getElementById(objectId)) {
  281. // W3C DOM
  282. return document.getElementById(objectId);
  283. } else if (document.all && document.all(objectId)) {
  284. // MSIE 4 DOM
  285. return document.all(objectId);
  286. } else if (document.layers && document.layers[objectId]) {
  287. // NN 4 DOM.. note: this won't find nested layers
  288. return document.layers[objectId];
  289. } else {
  290. return false;
  291. }
  292. }
  293. </script>
  294. </head>
  295. <body>
  296. <div id="nav">
  297. <ul><li id="man_nav_1" onclick="list_sub_nav(id,'信息管理')" class="bg_image_onclick">信息管理</li><li id="man_nav_2" onclick="list_sub_nav(id,'其它管理')" class="bg_image">其它管理</li><li class="bg_image"><a href="index.php?iframe=man" target="manFrame">回到桌面</a></li><li class="bg_image"><a href="../index.html" target="_blank">打开前台</a></li><%If Chklogin("查看统计") Then%><%If cnzzid<>"" And cnzzpwd<>"" Then%><li class="bg_image"><a href="cnzz.asp" target="_blank">打开统计</a></li><%End If%><%End If%></ul>
  298. </div>
  299. <div id="sub_info">&nbsp;&nbsp;<img src="images/hi.gif" />&nbsp;<span id="show_text">请点击左侧或下面菜单进行网站信息管理</span></div>
  300. </body>
  301. <%
  302. Case "man":
  303. %>
  304. <title>管理区域</title>
  305. <script type="text/javascript">
  306. function golink(t){
  307. window.top.frames['mainFrame'].getObject('show_text').innerHTML = t;
  308. }
  309. //获取对象属性兼容方法
  310. function getObject(objectId) {
  311. if(document.getElementById && document.getElementById(objectId)) {
  312. // W3C DOM
  313. return document.getElementById(objectId);
  314. } else if (document.all && document.all(objectId)) {
  315. // MSIE 4 DOM
  316. return document.all(objectId);
  317. } else if (document.layers && document.layers[objectId]) {
  318. // NN 4 DOM.. note: this won't find nested layers
  319. return document.layers[objectId];
  320. } else {
  321. return false;
  322. }
  323. }
  324. </script>
  325. <style>
  326. .menulist li{float:left;width:92px;height:132px;}
  327. .menulist li a{display:block;padding:10px 0;padding-top:50px;width:80px;height:15px;color:#A1B5B3;border:1px solid #B4C9C6;margin:5px;text-align:center}
  328. .menulist li a img{margin-bottom:5px}
  329. .menulist li a:hover{border:2px solid #B4C9C6;width:78px;height:13px;color:#A1B5B3}
  330. .png01{background:url(menu/01.png) center 8px no-repeat}
  331. .png02{background:url(menu/02.png) center 8px no-repeat}
  332. .png03{background:url(menu/03.png) center 8px no-repeat}
  333. .png04{background:url(menu/04.png) center 8px no-repeat}
  334. .png05{background:url(menu/05.png) center 8px no-repeat}
  335. .png06{background:url(menu/06.png) center 8px no-repeat}
  336. </style>
  337. </head>
  338. <body>
  339. <div id="man_zone">
  340. <ul class="menulist">
  341. <li><a href="customers.asp" onClick="golink('打开信息列表')" class="png03">客户管理</a></li>
  342. <!--
  343. <li><a href="product.asp" onClick="golink('产品管理')" class="png04">产品管理</a></li>
  344. <li><a href="xjd.asp" onClick="golink('查看产品询价')" class="png02">产品询价</a></li>
  345. -->
  346. </ul>
  347. </div>
  348. </body>
  349. <%
  350. Case Else
  351. %>
  352. <title><%=webname%> - 网站后台管理</title>
  353. </head>
  354. <frameset rows="50,*" cols="*" frameborder="no" border="0" framespacing="0">
  355. <frame src="?iframe=top" name="topFrame" frameborder="no" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
  356. <frameset name="myFrame" cols="199,7,*" frameborder="no" border="0" framespacing="0">
  357. <frame src="?iframe=left" name="leftFrame" frameborder="no" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
  358. <frame src="?iframe=switch" name="midFrame" frameborder="no" scrolling="No" noresize="noresize" id="midFrame" title="midFrame" />
  359. <frameset rows="59,*" cols="*" frameborder="no" border="0" framespacing="0">
  360. <frame src="?iframe=main" name="mainFrame" frameborder="no" scrolling="No" noresize="noresize" id="mainFrame" title="mainFrame" />
  361. <frame src="?iframe=man" name="manFrame" frameborder="no" id="manFrame" title="manFrame" />
  362. </frameset>
  363. </frameset>
  364. </frameset>
  365. <noframes><body>
  366. </body>
  367. </noframes>
  368. <%End Select%>
  369. </html>