📄 10d3726b7f30001d1f81bebe3c68a6df
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<html>
<head>
<title>My JSP 'clientList.jsp' starting page</title>
<%@ include file="/commons/meta.jsp" %>
</head>
<body class="bodycolor" topmargin="5">
<table class="title1">
<tr>
<td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3"> 新建角色</span><br>
</td>
</tr>
</table>
<div align="center">
<input type="button" value="新建角色" class="BigButton" onClick="location.href='role.do?p=edit'" title="新建角色">
</div>
<br>
<table width="95%" border="0" cellspacing="0" cellpadding="0" height="3">
<tr>
<td background="/images/dian1.gif" width="100%"></td>
</tr>
</table>
<table class="title1">
<tr>
<td class="Big"><img src="${ctx }/images/notify_open.gif" WIDTH="16" HEIGHT="16" align="absmiddle"><span class="big3"> 管理角色</span>
</td>
</tr>
</table>
<br>
<!-- 如果没有数据显示 提示 -->
<c:if test="${empty roles}">
<%@ include file="/utility/noData.jsp" %>
</c:if>
<c:if test="${!empty roles}">
<div align="center">
<table class="tablestyle1">
<thead class="TableHeader">
<td nowrap align="center">角色名称</td>
<td nowrap align="center">描述(职责)</td>
<td nowrap align="center">总用户数</td>
<td nowrap align="center">操作</td>
</thead>
<c:forEach items="${roles}" var="item">
<tr class="TableData">
<td nowrap align="center">${item.roleName }</td>
<td nowrap align="center">${item.description }</td>
<td nowrap align="center">0/0/0</td>
<td nowrap>
<a href="${ctx }/role.do?p=edit&&id=${item.id }"> 编辑角色</a>
<a href="rolePower.do?p=hangList&&id=${item.id}"> 绑定权限</a>
<a href="javascript:delete_priv('2')"> 删除</a>
</td>
</tr>
</c:forEach>
</table>
</div>
</c:if>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -