123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <?php
- include "conn.php";
- checkLogin("");
- $iframe = $_GET['iframe'] ?? '';
- // 处理不同的框架页面
- switch($iframe) {
- case 'top':
- // 顶部框架
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <title><?php echo $webname; ?> - 网站后台管理</title>
- </head>
- <body>
- <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>
- </body>
- </html>
- <?php
- break;
- case 'left':
- // 左侧导航栏
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title>左侧导航栏</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <script type="text/javascript">
- // 保持原有的 JavaScript 代码不变
- var preClassName = "";
- function list_sub_detail(Id, item)
- {
- if(preClassName != "")
- {
- getObject(preClassName).className = "left_back"
- }
- if(getObject(Id).className == "left_back")
- {
- getObject(Id).className = "left_back_onclick";
- outlookbar.getbyitem(item);
- preClassName = Id
- }
- }
-
- // ... [保持其他 JavaScript 函数不变]
- var outlookbar = new outlook();
- var t;
- t = outlookbar.addtitle('信息管理','信息管理',1);
- <?php if(chkLogin("信息管理")): ?>
- outlookbar.additem('来源管理',t,'qudao.php');
- outlookbar.additem('客户列表',t,'customers.php');
- outlookbar.additem('数据看板',t,'dashboard.php');
- outlookbar.additem('登录日志',t,'log.php');
- <?php endif; ?>
- t = outlookbar.addtitle('报价管理','信息管理',1);
- <?php if(chkLogin("信息管理")): ?>
- outlookbar.additem('添加产品',t,'products.php');
- outlookbar.additem('报价管理',t,'country.php');
- <?php endif; ?>
- t = outlookbar.addtitle('系统管理','其它管理',1);
- <?php if(chkLogin("系统管理")): ?>
- outlookbar.additem('查看系统设置',t,'inc.php');
- <?php endif; ?>
- t = outlookbar.addtitle('权限管理','其它管理',1);
- <?php if(chkLogin("权限管理")): ?>
- outlookbar.additem('员工管理',t,'employee.php');
- <?php endif; ?>
- </script>
- </head>
- <body onload="initinav('信息管理')">
- <div id="left_content">
- <div id="user_info">欢迎您,<strong><?php echo loadSession("loginname"); ?></strong><br />
- [<a href="pwd.php" target="manFrame">个人中心</a>,
- <a href="login.php?act=logout" target="_top" onClick="if(!confirm('确认要退出吗?'))return false;">退出管理</a>]</div>
- <div id="main_nav">
- <div id="left_main_nav"></div>
- <div id="right_main_nav"></div>
- </div>
- </div>
- </body>
- </html>
- <?php
- break;
- case 'switch':
- // 切换按钮框架
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title>显示/隐藏左侧导航栏</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <script language="JavaScript">
- function Submit_onclick(){
- if(parent.myFrame.cols == "199,7,*") {
- parent.myFrame.cols="0,7,*";
- document.getElementById("ImgArrow").src="images/switch_right.gif";
- document.getElementById("ImgArrow").alt="打开左侧导航栏";
- } else {
- parent.myFrame.cols="199,7,*";
- document.getElementById("ImgArrow").src="images/switch_left.gif";
- document.getElementById("ImgArrow").alt="隐藏左侧导航栏";
- }
- }
- function MyLoad() {
- if(window.parent.location.href.indexOf("MainUrl")>0) {
- window.top.midFrame.document.getElementById("ImgArrow").src="images/switch_right.gif";
- }
- }
- </script>
- </head>
- <body onload="MyLoad()">
- <div id="switchpic"><a href="javascript:Submit_onclick()"><img src="images/switch_left.gif" alt="隐藏左侧导航栏" id="ImgArrow" /></a></div>
- </body>
- </html>
- <?php
- break;
- case 'main':
- // 主导航区域
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title>管理导航区域</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <script type="text/javascript">
- // 保持原有的 JavaScript 代码
- var preClassName = "man_nav_1";
-
- function list_sub_nav(Id,sortname){
- if(preClassName != ""){
- getObject(preClassName).className="bg_image";
- }
- if(getObject(Id).className == "bg_image"){
- getObject(Id).className="bg_image_onclick";
- preClassName = Id;
- showInnerText(Id);
- window.top.frames['leftFrame'].outlookbar.getbytitle(sortname);
- window.top.frames['leftFrame'].outlookbar.getdefaultnav(sortname);
- }
- }
- // ... [其他 JavaScript 函数保持不变]
- </script>
- </head>
- <body>
- <div id="nav">
- <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>
- </ul>
- </div>
- <div id="sub_info"> <img src="images/hi.gif" /> <span id="show_text">请点击左侧或下面菜单进行网站信息管理</span></div>
- </body>
- </html>
- <?php
- break;
- case 'man':
- // 管理区域
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title>管理区域</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <script type="text/javascript">
- function golink(t){
- window.top.frames['mainFrame'].getObject('show_text').innerHTML = t;
- }
- // ... [其他 JavaScript 函数保持不变]
- </script>
- <style>
- .menulist li{float:left;width:92px;height:132px;}
- .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}
- .menulist li a:hover{border:2px solid #B4C9C6;width:78px;height:13px;color:#A1B5B3}
- .png01{background:url(menu/01.png) center 8px no-repeat}
- .png02{background:url(menu/02.png) center 8px no-repeat}
- .png03{background:url(menu/03.png) center 8px no-repeat}
- </style>
- </head>
- <body>
- <div id="man_zone">
- <ul class="menulist">
- <li><a href="customers.php" onClick="golink('打开信息列表')" class="png03">客户管理</a></li>
- </ul>
- </div>
- </body>
- </html>
- <?php
- break;
- default:
- // 主框架页
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title><?php echo $webname; ?> - 网站后台管理</title>
- </head>
- <frameset rows="50,*" cols="*" frameborder="no" border="0" framespacing="0">
- <frame src="?iframe=top" name="topFrame" frameborder="no" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
- <frameset name="myFrame" cols="199,7,*" frameborder="no" border="0" framespacing="0">
- <frame src="?iframe=left" name="leftFrame" frameborder="no" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
- <frame src="?iframe=switch" name="midFrame" frameborder="no" scrolling="No" noresize="noresize" id="midFrame" title="midFrame" />
- <frameset rows="59,*" cols="*" frameborder="no" border="0" framespacing="0">
- <frame src="?iframe=main" name="mainFrame" frameborder="no" scrolling="No" noresize="noresize" id="mainFrame" title="mainFrame" />
- <frame src="?iframe=man" name="manFrame" frameborder="no" id="manFrame" title="manFrame" />
- </frameset>
- </frameset>
- </frameset>
- <noframes><body></body></noframes>
- </html>
- <?php
- }
- ?>
|