⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.jsp

📁 是一个Bug系统
💻 JSP
字号:
<%@page  contentType="text/html;charset=gb2312"%>
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<html>
	<head>
		<title>项目管理->管理页面</title>
		<%@include file="../../inc/style.css"%>
	</head>
	<body>
		<center>
		<%@include file="../../inc/head.inc"%>
		<!--输入表格-->
		<table width="780" border="0">
			<html:form action="/project/projectact.do?function=add">
			<tbody>
				<tr>
					<td colspan="2" align="left">
						新项目增加>>
					</td>
				</tr>
				<tr>
					<td width="150" bgcolor="#DDDDEE">项目名称</td>
					<td width="630">
						<html:text property="model.name" size="50" maxlength="100"/>*
					</td>
				</tr>
				<tr>
					<td width="150" bgcolor="#DDDDEE">负责人</td>
					<td width="630">
						<html:text property="model.owner" size="50" maxlength="100"/>
					</td>
				</tr>
				<tr>
					<td bgcolor="#DDDDEE">项目说明</td>
					<td>
						<html:textarea property="model.remark" rows="5" cols="60"/>
					</td>
				</tr>
				<tr>
					<td colspan="2" align="left">
						<html:submit value=" 增加 "/>
					</td>
				</tr>
			</tbody>
		</html:form>
		</table>
		<!--组列表-->
		<table width="780" border="0">
			<tbody>
				<tr bgcolor="#DDDDFF">
					<td width="10%">项目序列号</td>
					<td width="20%">项目名称</td>
					<td width="10%">负责人</td>
					<td width="45%">项目描述</td>
					<td width="15%">操作</td>
				</tr>
				<logic:notEmpty name="projectList">
					<logic:iterate id="model" name="projectList">
				<tr bgcolor="#EEEEEE">
					<td><bean:write name="model" property="projectId"/></td>
					<td><bean:write name="model" property="name"/></td>
					<td><bean:write name="model" property="owner"/></td>
					<td><bean:write name="model" property="remark"/></td>
					<td><html:link action="/project/projectact.do?function=modify" paramId="id" paramName="model" paramProperty="projectId">修改</html:link> | <html:link action="/project/projectact.do?function=remove" paramId="model.projectId" paramName="model" paramProperty="projectId">删除</html:link></td>
				</tr>
					</logic:iterate>
				</logic:notEmpty>
			</tbody>
		</table>	</center>
	</body>
</html>

⌨️ 快捷键说明

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