?? index.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 + -