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

📄 rolepowerlist.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 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">
 	   &nbsp;<input type="checkbox" name="allbox" id="allbox_for" onClick="check_all();">
      <label for="allbox_for">全选</label> &nbsp;
 </td>
 </tr>
  </table>

  <td nowrap  class="TableControl" colspan="2" align="center">
        <input type="hidden" value="" name="USER_PRIV">
        <input type="submit" value="确定" class="BigButton">&nbsp;&nbsp;
        <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 + -