This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
EDT/pc/template/win_add.php
T
wsh5485 7e47ce238b chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
2025-06-15 13:04:37 +08:00

65 lines
2.9 KiB
PHP

<!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" />
<script language="javascript" src="js/function.js"></Script>
<script language="javascript" src="js/My97DatePicker/WdatePicker.js"></Script>
<!-- ztree -->
<link rel="stylesheet" href="js/ztree/css/zTreeStyle/zTreeStyle.css" type="text/css">
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="js/ztree/js/jquery.ztree.core-3.2.js"></script>
<script type="text/javascript" src="js/ztree/js/jquery.ztree.excheck-3.2.js"></script>
<!-- /ztree -->
<script>
<?php echo $js_code; ?>
</script>
</head>
<body onload="this.focus();<?php echo $js_onload_function; ?>">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
<?php if($_nav_){ ?>
<tr>
<td style="font-weight:bold;border:1px solid #cccccc;" bgcolor="#c9e3fc" height="24">&nbsp;<?php echo $_nav_; ?></td>
</tr>
<?php } ?>
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="2">
<form name="form1" action="<?php echo $_SERVER[PHP_SELF] ?>" method="post"<?php echo $form_property; ?>>
<input type="hidden" name="_m" value="<?php echo $_m; ?>">
<input type="hidden" name="_cid" value="<?php echo $_cid; ?>">
<?php
if(is_array($form_hidden)){
foreach ($form_hidden as $key => $value){
echo "<input type=hidden name=\"".$key."\" value=\"".$value."\">\n";
}
}
?>
<?php for($i=0;$i<count($content);$i++){ ?>
<tr>
<td width="<?php echo $_width_?$_width_:80; ?>" align="right" bgcolor="#f5f5f5"><?php echo $content[$i][0]; ?></td>
<td><?php echo $content[$i][1] ?></td>
</tr>
<?php } ?>
<tr>
<td colspan="2" align="left"><?php echo $_submit_button_?$_submit_button_:"<input type=\"submit\" name=\"s1\" value=\"提 交\"> <input type=\"reset\" name=\"r1\" value=\"重 置\"> <input type=\"button\" name=\"b1\" value=\"返 回\" onclick=\"history.back();\">"; ?></td>
</tr>
</form>
<?php if($content_log){ ?>
<tr>
<td height="25" colspan="2" align="left" bgcolor="#FFFFFF"><b>操作日志</b>
<hr style="width:100%" />
<?php echo $content_log; ?>
</td>
</tr>
<?php } ?>
</table></td>
</tr>
</table>
<div id="divProcessing" style="width:100%;position:absolute;left:0px;top:200px;text-align:center;display:none;" align="center">
<table width="30%" border="0" cellspacing="1" cellpadding="3" class="table_border" align="center">
<tr><td bgcolor="#f5f5f5"><marquee align="middle" behavior="alternate" scrollamount="5">...数据处理中...请耐心等待...</marquee></td></tr>
</table>
</div>
</body>
</html>