📄 functionlist.jsp
字号:
<%@taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
<%@taglib uri="/WEB-INF/struts-nested.tld" prefix="nested"%>
<%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@page contentType="text/html; charset=GBK"%>
<!-- 检查用户是否已登陆-->
<html:html>
<head>
<html:base/>
<LINK REL="stylesheet" TYPE="text/css" href="<%=request.getContextPath()%>/_normal/css/style.css">
<script language="javascript" src="<%=request.getContextPath()%>/_normal/script/Table.js" type="text/javascript"></script>
<script language="javascript" src="<%=request.getContextPath()%>/_normal/script/common.js" type="text/javascript"></script>
<script type="">
function refesh(){
window.location='<%=request.getContextPath() %>/functionAction.do?method=recreate';
}
</script>
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="70%" nowrap class="location">
当前位置:系统模块信息查看
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="7%" id="addNew" align="center" valign="middle" nowrap class="toolbar" onMouseOver="OMO()" onMouseOut="OMOU()" onClick="refesh()"><img src="<%=request.getContextPath()%>/_normal/toolbar_pic/arrow_refresh.gif" alt="刷新">刷新</td>
<td width="92%" align="right" valign="middle" nowrap class="toolbar"></td>
<td width="5%" align="center" valign="middle" nowrap class="toolbar"> </td>
</tr>
</table>
<table cellpadding="0" cellspacing="1" border="0" width="100%" id="PowerTable">
<tr align="center">
<td width="10%" nowrap class="title">序号</td>
<td width="25%" nowrap class="title">模块编号</td>
<td width="20%" nowrap class="title">模块层次</td>
<td width="15%" nowrap class="title">权限位</td>
<td width="30%" nowrap class="title">系统名称</td>
</tr>
<logic:notEmpty name="list" scope="request">
<logic:iterate id="function" name="list" indexId="index">
<tr align="center">
<td height="20"><%=(index.intValue() + 1)%></td>
<td><bean:write name="function" property="selfName"/></td>
<td><bean:write name="function" property="selfLevel"/></td>
<td><bean:write name="function" property="prBit"/></td>
<td><bean:write name="function" property="selfCaption"/></td>
</tr>
</logic:iterate>
</logic:notEmpty>
<logic:empty name="list">
<tr>
<td colspan="5" height="20" align="center">没有系统信息</td>
</tr>
</logic:empty>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -