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

📄 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="/group/groupact.do?function=add" method="post">
			<tbody>
				<tr>
					<td colspan="2" align="left">
						组创建>>
					</td>
				</tr>
				<tr>
					<td width="150" bgcolor="#DDDDEE">组名称</td>
					<td width="630">
						<html:text property="name" size="20"/>
					</td>
				</tr>
				<tr>
					<td bgcolor="#DDDDEE">组所拥有的BUG状态</td>
					<td>
						<logic:notEmpty name="bugStatusList">
							<logic:iterate id="bs" name="bugStatusList" >
							<html:multibox property="statusList"><bean:write name="bs" property="bsid"/></html:multibox>
							<bean:write name="bs" property="name"/>
							</logic:iterate>
						</logic:notEmpty>
					</td>
				</tr>
				<tr>
					<td colspan="2" align="left">
						<input type="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="50%">组所拥有的BUG状态</td>
					<td width="20%">操作</td>
				</tr>
				<logic:notEmpty name="groupList">
					<logic:iterate id="group" name="groupList">
				<tr bgcolor="#EEEEEE">
					<td><bean:write name="group" property="groupId"/></td>
					<td><bean:write name="group" property="name"/></td>
					<td>
						<bean:define id="statusList" name="group" property="statusList"></bean:define>
						<logic:notEmpty name="statusList">
							<logic:iterate id="sModel" name="statusList">
								<bean:write name="sModel" property="name"/><br>
							</logic:iterate>
						</logic:notEmpty>
					</td>
					<td><html:link action="/groupping.do?function=modify" paramId="id" paramName="group" paramProperty="groupId">修改</html:link> | <html:link action="/groupping.do?function=remove" paramId="groupId" paramName="group" paramProperty="groupId">删除</html:link></td>
				</tr>
					</logic:iterate>
				</logic:notEmpty>
			</tbody>
		</table>
	</center>
	</body>
</html>

⌨️ 快捷键说明

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