📄 rolepowerlist.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<html>
<head>
<title>${CompanyName }${ProjectName }</title>
<%@ include file="/commons/meta.jsp" %>
</head>
<body class="bodycolor" topmargin="5" onload="document.form1.PROVIDER_NAME.focus();">
<table class="title1">
<tr>
<td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3"> 编辑角色权限</span>
</td>
</tr>
</table>
<c:if test="${ empty powers}">
<%@ include file="/utility/noData.jsp" %>
</c:if>
<c:if test="${! empty powers }">
<html:form action="/rolePower" method="post">
<input type="hidden" name="p" value="save"/>
<input type="hidden" name="roleId" value="${ rolePowerForm.roleId }"/>
<table class="tablestyle1">
<tr class="TableHeader">
<td nowrap width="5%" align="center">选择</td>
<td nowrap width="20%" align="center">权限名称</td>
</tr>
<c:forEach items="${powers}" var="item">
<TR class="TableLine1">
<TD nowrap align="center">
<html:multibox property="powerIds" value="${item.id}" />
</TD>
<TD nowrap align="center">
${item.powerName}
</TD>
</TR>
</c:forEach>
<tr class="TableControl">
<td colspan="6">
<input type="checkbox" name="allbox" id="allbox_for" onClick="check_all();">
<label for="allbox_for">全选</label>
</td>
</tr>
</table>
<td nowrap class="TableControl" colspan="2" align="center">
<input type="hidden" value="" name="USER_PRIV">
<input type="submit" value="确定" class="BigButton">
<input type="button" value="返回" class="BigButton" onclick="history.back(-1)">
</td>
</html:form>
</c:if>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -