index.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?php
  2. include "conn.php";
  3. checkLogin("");
  4. $iframe = $_GET['iframe'] ?? '';
  5. // 处理不同的框架页面
  6. switch($iframe) {
  7. case 'top':
  8. // 顶部框架
  9. ?>
  10. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  11. <html xmlns="http://www.w3.org/1999/xhtml">
  12. <head>
  13. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  14. <link rel="stylesheet" href="css/common.css" type="text/css" />
  15. <title><?php echo $webname; ?> - 网站后台管理</title>
  16. </head>
  17. <body>
  18. <h1 style="padding:0;margin:0;height:50px;line-height:50px;text-indent:20px;font-size:20px;font-family:Arial;color:#0099CC"><?php echo $webname; ?></h1>
  19. </body>
  20. </html>
  21. <?php
  22. break;
  23. case 'left':
  24. // 左侧导航栏
  25. ?>
  26. <!DOCTYPE html>
  27. <html>
  28. <head>
  29. <title>左侧导航栏</title>
  30. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  31. <link rel="stylesheet" href="css/common.css" type="text/css" />
  32. <script type="text/javascript">
  33. // 保持原有的 JavaScript 代码不变
  34. var preClassName = "";
  35. function list_sub_detail(Id, item)
  36. {
  37. if(preClassName != "")
  38. {
  39. getObject(preClassName).className = "left_back"
  40. }
  41. if(getObject(Id).className == "left_back")
  42. {
  43. getObject(Id).className = "left_back_onclick";
  44. outlookbar.getbyitem(item);
  45. preClassName = Id
  46. }
  47. }
  48. // ... [保持其他 JavaScript 函数不变]
  49. var outlookbar = new outlook();
  50. var t;
  51. t = outlookbar.addtitle('信息管理','信息管理',1);
  52. <?php if(chkLogin("信息管理")): ?>
  53. outlookbar.additem('来源管理',t,'qudao.php');
  54. outlookbar.additem('客户列表',t,'customers.php');
  55. outlookbar.additem('数据看板',t,'dashboard.php');
  56. outlookbar.additem('登录日志',t,'log.php');
  57. <?php endif; ?>
  58. t = outlookbar.addtitle('报价管理','信息管理',1);
  59. <?php if(chkLogin("信息管理")): ?>
  60. outlookbar.additem('添加产品',t,'products.php');
  61. outlookbar.additem('报价管理',t,'country.php');
  62. <?php endif; ?>
  63. t = outlookbar.addtitle('系统管理','其它管理',1);
  64. <?php if(chkLogin("系统管理")): ?>
  65. outlookbar.additem('查看系统设置',t,'inc.php');
  66. <?php endif; ?>
  67. t = outlookbar.addtitle('权限管理','其它管理',1);
  68. <?php if(chkLogin("权限管理")): ?>
  69. outlookbar.additem('员工管理',t,'employee.php');
  70. <?php endif; ?>
  71. </script>
  72. </head>
  73. <body onload="initinav('信息管理')">
  74. <div id="left_content">
  75. <div id="user_info">欢迎您,<strong><?php echo loadSession("loginname"); ?></strong><br />
  76. [<a href="pwd.php" target="manFrame">个人中心</a>,
  77. <a href="login.php?act=logout" target="_top" onClick="if(!confirm('确认要退出吗?'))return false;">退出管理</a>]</div>
  78. <div id="main_nav">
  79. <div id="left_main_nav"></div>
  80. <div id="right_main_nav"></div>
  81. </div>
  82. </div>
  83. </body>
  84. </html>
  85. <?php
  86. break;
  87. case 'switch':
  88. // 切换按钮框架
  89. ?>
  90. <!DOCTYPE html>
  91. <html>
  92. <head>
  93. <title>显示/隐藏左侧导航栏</title>
  94. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  95. <link rel="stylesheet" href="css/common.css" type="text/css" />
  96. <script language="JavaScript">
  97. function Submit_onclick(){
  98. if(parent.myFrame.cols == "199,7,*") {
  99. parent.myFrame.cols="0,7,*";
  100. document.getElementById("ImgArrow").src="images/switch_right.gif";
  101. document.getElementById("ImgArrow").alt="打开左侧导航栏";
  102. } else {
  103. parent.myFrame.cols="199,7,*";
  104. document.getElementById("ImgArrow").src="images/switch_left.gif";
  105. document.getElementById("ImgArrow").alt="隐藏左侧导航栏";
  106. }
  107. }
  108. function MyLoad() {
  109. if(window.parent.location.href.indexOf("MainUrl")>0) {
  110. window.top.midFrame.document.getElementById("ImgArrow").src="images/switch_right.gif";
  111. }
  112. }
  113. </script>
  114. </head>
  115. <body onload="MyLoad()">
  116. <div id="switchpic"><a href="javascript:Submit_onclick()"><img src="images/switch_left.gif" alt="隐藏左侧导航栏" id="ImgArrow" /></a></div>
  117. </body>
  118. </html>
  119. <?php
  120. break;
  121. case 'main':
  122. // 主导航区域
  123. ?>
  124. <!DOCTYPE html>
  125. <html>
  126. <head>
  127. <title>管理导航区域</title>
  128. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  129. <link rel="stylesheet" href="css/common.css" type="text/css" />
  130. <script type="text/javascript">
  131. // 保持原有的 JavaScript 代码
  132. var preClassName = "man_nav_1";
  133. function list_sub_nav(Id,sortname){
  134. if(preClassName != ""){
  135. getObject(preClassName).className="bg_image";
  136. }
  137. if(getObject(Id).className == "bg_image"){
  138. getObject(Id).className="bg_image_onclick";
  139. preClassName = Id;
  140. showInnerText(Id);
  141. window.top.frames['leftFrame'].outlookbar.getbytitle(sortname);
  142. window.top.frames['leftFrame'].outlookbar.getdefaultnav(sortname);
  143. }
  144. }
  145. // ... [其他 JavaScript 函数保持不变]
  146. </script>
  147. </head>
  148. <body>
  149. <div id="nav">
  150. <ul>
  151. <li id="man_nav_1" onclick="list_sub_nav(id,'信息管理')" class="bg_image_onclick">信息管理</li>
  152. <li id="man_nav_2" onclick="list_sub_nav(id,'其它管理')" class="bg_image">其它管理</li>
  153. <li class="bg_image"><a href="index.php?iframe=man" target="manFrame">回到桌面</a></li>
  154. <li class="bg_image"><a href="../index.html" target="_blank">打开前台</a></li>
  155. </ul>
  156. </div>
  157. <div id="sub_info">&nbsp;&nbsp;<img src="images/hi.gif" />&nbsp;<span id="show_text">请点击左侧或下面菜单进行网站信息管理</span></div>
  158. </body>
  159. </html>
  160. <?php
  161. break;
  162. case 'man':
  163. // 管理区域
  164. ?>
  165. <!DOCTYPE html>
  166. <html>
  167. <head>
  168. <title>管理区域</title>
  169. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  170. <link rel="stylesheet" href="css/common.css" type="text/css" />
  171. <script type="text/javascript">
  172. function golink(t){
  173. window.top.frames['mainFrame'].getObject('show_text').innerHTML = t;
  174. }
  175. // ... [其他 JavaScript 函数保持不变]
  176. </script>
  177. <style>
  178. .menulist li{float:left;width:92px;height:132px;}
  179. .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}
  180. .menulist li a:hover{border:2px solid #B4C9C6;width:78px;height:13px;color:#A1B5B3}
  181. .png01{background:url(menu/01.png) center 8px no-repeat}
  182. .png02{background:url(menu/02.png) center 8px no-repeat}
  183. .png03{background:url(menu/03.png) center 8px no-repeat}
  184. </style>
  185. </head>
  186. <body>
  187. <div id="man_zone">
  188. <ul class="menulist">
  189. <li><a href="customers.php" onClick="golink('打开信息列表')" class="png03">客户管理</a></li>
  190. </ul>
  191. </div>
  192. </body>
  193. </html>
  194. <?php
  195. break;
  196. default:
  197. // 主框架页
  198. ?>
  199. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  200. <html xmlns="http://www.w3.org/1999/xhtml">
  201. <head>
  202. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  203. <title><?php echo $webname; ?> - 网站后台管理</title>
  204. </head>
  205. <frameset rows="50,*" cols="*" frameborder="no" border="0" framespacing="0">
  206. <frame src="?iframe=top" name="topFrame" frameborder="no" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
  207. <frameset name="myFrame" cols="199,7,*" frameborder="no" border="0" framespacing="0">
  208. <frame src="?iframe=left" name="leftFrame" frameborder="no" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
  209. <frame src="?iframe=switch" name="midFrame" frameborder="no" scrolling="No" noresize="noresize" id="midFrame" title="midFrame" />
  210. <frameset rows="59,*" cols="*" frameborder="no" border="0" framespacing="0">
  211. <frame src="?iframe=main" name="mainFrame" frameborder="no" scrolling="No" noresize="noresize" id="mainFrame" title="mainFrame" />
  212. <frame src="?iframe=man" name="manFrame" frameborder="no" id="manFrame" title="manFrame" />
  213. </frameset>
  214. </frameset>
  215. </frameset>
  216. <noframes><body></body></noframes>
  217. </html>
  218. <?php
  219. }
  220. ?>