chore: 添加多个图片和资源文件

添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
This commit is contained in:
2025-06-15 13:04:37 +08:00
parent 1e61dc3970
commit 7e47ce238b
13220 changed files with 1377028 additions and 0 deletions
+141
View File
@@ -0,0 +1,141 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $_title_; ?></title>
<link href="css/index.css" rel="stylesheet" type="text/css" />
<style> table.border td {border-bottom:1px solid #000000;border-left:1px solid #000000;} </style>
<script language="javascript" src="js/function.js"></Script>
<script language="javascript" src="js/My97DatePicker/WdatePicker.js"></Script>
<script>
function start_print(obj)
{
var oWin=window.open("","_blank");
var strPrint="<html><head><link href='css/index.css' rel='stylesheet' type='text/css' /><style> table.border td {border-bottom:1px solid #000000;border-left:1px solid #000000;} </style></head><body>";
strPrint+=document.getElementById("print_div").innerHTML;
strPrint+="</body></html>";
oWin.document.write(strPrint);
oWin.document.close();
oWin.focus();
oWin.print();
}
//
function js_export(obj)
{
var oWin=window.open("","_blank");
var strPrint="<html><head><link href='css/index.css' rel='stylesheet' type='text/css' /><style> table.border td {border-bottom:1px solid #000000;border-left:1px solid #000000;} </style></head><body>";
strPrint+=document.getElementById(obj).innerHTML;
strPrint+="</body></html>";
oWin.document.write(strPrint);
oWin.document.close();
oWin.focus();
}
</script>
<!--自动完成 -->
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="js/jquery.autocomplete.js"></script>
<link rel="Stylesheet" href="css/jquery.autocomplete.css" />
<!--/自动完成 -->
<script type="text/javascript">
<?php
if($js_function)
echo $js_function;
?>
</script>
</head>
<body>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><?php include "inc.top.php"; ?></td>
</tr>
<tr><td style="height: 8px;"></td></tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="160" style="padding-right:8px;" valign="top"><?php include "inc.menu.php"; ?></td>
<td valign="top">
<!--内容开始-->
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1">
<!--tab框 -->
<?php if($tab_content){ ?>
<tr><td align="left" style="background:url(images/tab1_bg.gif) repeat-x center;">
<table align="left" cellspacing="0" cellpadding="0">
<tr>
<td align="center" height="27" width="20" style="background:url(images/tab1_bg.gif) repeat-x center;">&nbsp;</td>
<?php for($i=0;$i<count($tab_content);$i++){ ?>
<td align="center" width="10"><img src="images/tab1<?php echo $tab_content[$i][0]; ?>_l.gif" width="10" height="27" border="0"></td>
<td align="center" style="background:url(images/tab1<?php echo $tab_content[$i][0]; ?>_title_bg.gif) repeat-x center;"><?php echo $tab_content[$i][1]; ?></td>
<td align="center" width="10"><img src="images/tab1<?php echo $tab_content[$i][0]; ?>_r.gif" width="10" height="27" border="0"></td>
<?php } ?>
</tr>
</table>
</td></tr>
<?php } ?>
<?php if($search_content){ ?>
<!--/tab框 -->
<form name="form1" action="<?php echo $_SERVER[PHP_SELF] ?>" method="post">
<input type="hidden" name="_m" value="<?php echo $_m; ?>">
<input type="hidden" name="_cid" value="<?php echo $_cid; ?>">
<input type="hidden" name="_a" value="<?php echo $_a; ?>">
<tr>
<td align="center" style="padding-top:4px;"><?php echo $search_content; ?></td>
</tr>
</form>
<?php } ?>
<tr>
<td height="200" align="center" valign="top">
<div id="print_div">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<?php if($_title){ ?>
<tr>
<td height="30" align="center" style="font-size:16px;font-weight:bold;"><?php echo $_title; ?></td>
</tr>
<?php } ?>
<?php if($_title1){ ?>
<tr>
<td><?php echo $_title1; ?></td>
</tr>
<?php } ?>
<tr><td>
<?php if($_tbody || count($_tcontent)>0){ ?>
<div id='main_table'>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-top:1px solid #000000;border-right:1px solid #000000;" class="border">
<?php if($_tbody) echo $_tbody; ?>
<?php if(count($_tcontent)>0){
for($i=0;$i<count($_tcontent);$i++){
echo $_tcontent[$i];
}
}
?></table></div>
<?php } ?>
<?php if($_content) echo $_content; ?>
</td></tr>
<?php if($_bottom){ ?>
<tr>
<td><?php echo $_bottom; ?></td>
</tr>
<tr>
<?php } ?>
</table></div></td>
</tr>
<?php if($bottom_button){ ?>
<tr>
<td bgcolor="#fffffff"><table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td align="center"><?php echo $bottom_button; ?></td>
</tr>
</table></td>
</tr>
<?php } ?>
</table>
<!--内容结束--></td>
</tr>
</table></td>
</tr>
<tr>
<td><?php include "inc.bottom.php"; ?></td>
</tr>
</table>
<div id="div_kh_pic" style="display:none;position:absolute;top:10px;left:10px;">pic</div>
</body>
</html>