📄 modules.jsp
字号:
<%@ page contentType="text/html; charset=GBK"%>
<%@ page import="java.util.*"%>
<%@ page import="org.appfuse.model.*"%>
<%@ page import="org.appfuse.webapp.form.*"%>
<%@ page import="org.appfuse.util.*"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<SCRIPT language=JavaScript src="<%=request.getContextPath()%>/include/check.js" type="text/javascript"></SCRIPT>
<html>
<head>
<link rel=stylesheet href="<%=request.getContextPath()%>/include/style.css">
<title>模块管理</title>
<SCRIPT language="javascript">
function searchModule()
{
document.moduleForm.action="<%=request.getContextPath()%>/moduleAction.do?method=search";
document.moduleForm.submit();
}
function createModule()
{
document.moduleForm.action="<%=request.getContextPath()%>/sysmanage/modulemanage/module_create.jsp";
document.moduleForm.submit();
}
</SCRIPT>
</head>
<%
List modules = (List)request.getAttribute("modules");
%>
<body>
<form name="moduleForm" method="POST" >
<table border="1px" cellspacing="0" cellpadding="10" align=center width="80%" bgColor=#E4E8EF>
<tr>
<td width="70%">模块编号
<input name="moduleid" type="text" size="15">
<a href="#" onClick="searchModule();">查询</a>
</td>
<td width="30%">
<div align="center">
<a href="#" onClick="createModule();">创建新模块</a>
</div>
</td>
</tr>
</table>
<!--
<table border="1px" cellspacing="0" cellpadding="10" align=center width="80%" bgColor=#E4E8EF>
<tr>
<td align="left" width="70%">模块列表</td>
<td align="right" width="30%">
<input type="button" name="create" value="创建新模块" onClick="createStaff();">
</td>
</tr>
</table>
-->
<table border="1px" cellspacing="0" cellpadding="10" align=center width="80%" bgColor=#E4E8EF>
<tr bgcolor="#76aef0">
<th width="10%"><div align="center">模块编号</div></th>
<th width="30%"><div align="center">模块名称</div></th>
<th width="30%"><div align="center">模块URL</div></th>
<th width="30%"><div align="center">操作</div></th>
</tr>
<%
if(modules != null)
{
for(int i = 0; i< modules.size(); i++)
{
Module module = (Module)modules.get(i);
%>
<tr>
<td><%=StringUtil.getString(module.getModuleid())%></td>
<td>
<a href="<%=request.getContextPath()%>/authAction.do?method=list&moduleid=<%=module.getModuleid()%>">
<%=module.getModulename()%></a>
</td>
<td><%=module.getModuleURL()%></td>
<td align="center">
<a href="<%=request.getContextPath()%>/moduleAction.do?method=update&moduleid=<%=module.getModuleid()%>">编辑</a>
<a href="<%=request.getContextPath()%>/moduleAction.do?method=delete&moduleid=<%=module.getModuleid()%>">删除</a>
<!--
<a href="<%=request.getContextPath()%>/moduleAction.do?method=moduleauth&moduleid=<%=module.getModuleid()%>">分配权限</a>
-->
</td>
</tr>
<%
}
}
%>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -