📄 deptmonthplan.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<%@ include file="../../publicModel.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>deptMonthPlan.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<br>
<br>
<br>
<h2 align="center">部门每月销售计划</h2>
<table width="800" height="126" border="1" align="center" cellSpacing=0 cellPadding=2 id="PowerTable">
<tr width=100% align=middle bgcolor=#C4E6DE>
<td>部门编码</td>
<td>部门名称</td>
<td>年</td>
<td>月</td>
<td>计划额</td>
<td>销售额</td>
<td><html:link action="deptViewMonth.do?opera=add&dCode=${param.dCode}&year=${param.year}">新增</html:link></td>
</tr>
<logic:iterate id="deptplan" name="xsplan">
<tr>
<td align="center">${deptplan[0]}</td>
<td align="center">${deptplan[1]}</td>
<td align="center">${deptplan[2]}</td>
<td align="center">${deptplan[3]}</td>
<td align="center">${deptplan[4]}</td>
<td align="center">${deptplan[5]}</td>
<td align="center"><html:link action="deptViewMonth.do?opera=update&dCode=${deptplan[0]}&year=${deptplan[2]}&month=${deptplan[3]}">修改</html:link></td>
</tr>
</logic:iterate>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -