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

📄 80e6e47d9030001d1f81bebe3c68a6df

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻
字号:
<%@ 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="middle"><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  align="center" width="30%">角色名称</td>
      <td  align="center" width="30%">描述(职责)</td>
      <td  align="center" width="40%">操作</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>&nbsp;&nbsp;
        <a href="${ctx }/role.do?p=edit&&id=${item.id }"> 编辑角色</a>&nbsp;&nbsp;
        <a href="${ctx }/rolePower.do?p=hangList&&id=${item.id}"> 绑定权限</a>&nbsp;&nbsp;
        <a href="${ctx }/role.do?p=delete&&id=${item.id }" onClick="{if(confirm('确定要删除该角色吗?')){return true;}return false;}"> 删除</a>
      </td>
    </tr>
</c:forEach>
   </table>

</div>
</c:if>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -