work_plan.php

来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 51 行

PHP
51
字号
<?
include_once("inc/auth.php");
?>

<html>
<head>
<title>工作计划列表</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function hide(dept)
{
   obj=document.all(dept);
   if(obj.style.display=="")
      obj.style.display="none";
   else
      obj.style.display=""
}
</script>
</head>
<body class="bodycolor" topmargin="5">

<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr onclick="hide('DEPT_ALL');" style="cursor:hand" title="点击展开全体计划">
    <td class="Big"><img src="/images/menu/work_plan.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><span class="big3"> 全体工作计划 展开/收缩</span><br>
    </td>
  </tr>
</table>

<iframe id="DEPT_ALL" frameborder=0 height="200" marginheight=0 marginwidth=0 scrolling=yes src="query.php?RANGE=0&DATE=<?=$DATE?>" width=95%></iframe>

<br>
<br>
<table width="95%" border="0" cellspacing="0" cellpadding="0" height="3">
 <tr>
   <td background="/images/dian1.gif" width="100%"></td>
 </tr>
</table>

<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr onclick="hide('DEPT');" style="cursor:hand" title="点击展开部门计划">
    <td class="Big"><img src="/images/menu/work_plan.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><span class="big3"> 部门工作计划 展开/收缩</span><br>
    </td>
  </tr>
</table>

<iframe id="DEPT" frameborder=0 height="200" marginheight=0 marginwidth=0 scrolling=yes src="query.php?RANGE=1&DATE=<?=$DATE?>" width=95%></iframe>

</body>

</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?