| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>项目列表</title>
- <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/core/base.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/plugins/ligerGrid.js" type="text/javascript"></script>
- <link href="${pageContext.request.contextPath}/main.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/constant.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/plugins/ligerDrag.js" type="text/javascript"></script>
- <script src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/plugins/ligerDialog.js" type="text/javascript"></script>
- <script type="text/javascript">
- </script>
- <script type="text/javascript">
- function toAddAuthor(){
- var url="toPersonalAuthor.do";
- submitAUrl(url);
- }
- function delAuthor(date){
- var url="personalAuthorList.do?task=toDel&userId="+date;
- $.ligerDialog.confirm('撤消后,授权的权限将被收回,是否继续?', function (type) {
- if(type==true){
- submitAUrl(url);
- }else{
- return;
- }
- });
- }
- </script>
- </head>
- <body >
- <div class="container-layout">
- <div id="title" class="form-button">
- <input type="button" class="l-button" value="新增授权" onclick="toAddAuthor()"/>
- </div>
- <FORM method='POST' name="theForm" id="theForm" action="configSave.do">
- <div class="l-content">
- <div class="forum-container">
- <center>
- <Table border="0" cellspacing="1" cellpadding="0" class="l-table-edit line">
- <tr ><th width="10%">被授权人</th><th width="25%">所在部门</th ><th width="22%" >创建时间</th><th width="22%">最后更新时间</th><th width="21%">操作</th></tr>
- <c:forEach items="${authors}" var="author" varStatus="i">
- <tr>
- <td class="l-table-edit-text">
- <span>${author.userName }</span>
- </td>
- <td class="l-table-edit-text">
- <span>${author.groupName }</span>
- </td>
- <td class="l-table-edit-text">
- <span>${author.startTime }</span>
- </td>
- <td class="l-table-edit-text">
- <span>${author.updateTime }</span>
- </td>
- <td class="l-table-edit-text">
- <a href="toPersonalAuthor.do?userId=${author.userId }" style="font-weight:normal">编辑</a> <a href="#" onclick="delAuthor(${author.userId })" style="font-weight:normal">撤销</a>
- </td>
- </tr>
- </c:forEach>
- </Table>
- </center>
- </div>
- </div>
- </FORM>
- <div style="clear: both;">
- <div id="maingrid4" style="margin: 0; padding: 0"></div>
- </div>
- <div style="display:none;">
- <!-- g data total ttt -->
- </div>
- </div>
- <%@ include file="/include/message.jsp"%>
- </body>
- </html>
|