| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "auth");%>
- <%pageContext.setAttribute("currentMenu", "auth");%>
- <!doctype html>
- <html>
- <head>
- <%@include file="/common/meta.jsp"%>
- <title><spring:message code="auth.role.list.title" text="角色列表"/></title>
- <%@include file="/common/s.jsp"%>
- <script type="text/javascript">
- var config = {
- id: 'roleGrid',
- pageNo: ${page.pageNo},
- pageSize: ${page.pageSize},
- totalCount: ${page.totalCount},
- resultSize: ${page.resultSize},
- pageCount: ${page.pageCount},
- orderBy: '${page.orderBy == null ? "" : page.orderBy}',
- asc: ${page.asc},
- params: {
- 'filter_LIKES_name': '${param.filter_LIKES_name}'
- },
- selectedItemClass: 'selectedItem',
- gridFormId: 'roleGridForm',
- exportUrl: 'role-export.do'
- };
- var table;
- $(function() {
- table = new Table(config);
- table.configPagination('.m-pagination');
- table.configPageInfo('.m-page-info');
- table.configPageSize('.m-page-size');
- });
- </script>
- </head>
- <body>
- <%@include file="/header/auth.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/auth.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="span10">
- <article class="m-widget">
- <header class="header">
- <h4 class="title">查询</h4>
- <div class="ctrl">
- <a class="btn"><i id="roleSearchIcon" class="icon-chevron-up"></i></a>
- </div>
- </header>
- <div id="roleSearch" class="content content-inner">
- <form name="roleForm" method="post" action="role-list.do" class="form-inline">
- <label for="role_name"><spring:message code='auth.role.list.search.name' text='名称'/>:</label>
- <input type="text" id="role_name" name="filter_LIKES_name" value="${param.filter_LIKES_name}">
- <button class="btn btn-small" onclick="document.permForm.submit()">查询</button>
- </form>
- </div>
- </article>
- <article class="m-blank">
- <div class="pull-left">
- <region:region-permission permission="role:create">
- <button class="btn btn-small a-insert" onclick="location.href='role-input.do'"><spring:message code="core.list.create" text="新建"/></button>
- </region:region-permission>
- <region:region-permission permission="role:delete">
- <button class="btn btn-small a-remove" onclick="table.removeAll()"><spring:message code="core.list.delete" text="删除"/></button>
- </region:region-permission>
- <button class="btn btn-small a-export" onclick="table.exportExcel()"><spring:message code="core.list.export" text="导出"/></button>
- </div>
- <div class="pull-right">
- 每页显示
- <select class="m-page-size">
- <option value="10">10</option>
- <option value="20">20</option>
- <option value="50">50</option>
- </select>
- 条
- </div>
- <div class="m-clear"></div>
- </article>
- <article class="m-widget">
- <header class="header">
- <h4 class="title"><spring:message code="auth.role.list.title" text="角色列表"/></h4>
- </header>
- <div class="content">
- <form id="roleGridForm" name="roleGridForm" method='post' action="role-remove.do" class="m-form-blank">
- <table id="roleGrid" class="m-table table-hover">
- <thead>
- <tr>
- <th width="10" class="m-table-check"><input type="checkbox" name="checkAll" onchange="toggleSelectedItems(this.checked)"></th>
- <th class="sorting" name="id"><spring:message code="auth.role.list.id" text="编号"/></th>
- <th class="sorting" name="name"><spring:message code="auth.role.list.name" text="名称"/></th>
- <th class="sorting" name="name">模板</th>
- <th width="150"> </th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.result}" var="item">
- <tr>
- <td><input type="checkbox" class="selectedItem a-check" name="selectedItem" value="${item.id}"></td>
- <td>${item.id}</td>
- <td>${item.name}</td>
- <td>${item.roleDef.scopeId}</td>
- <td>
-
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </form>
- </article>
- <article>
- <div class="m-page-info pull-left">
- 共100条记录 显示1到10条记录
- </div>
- <div class="btn-group m-pagination pull-right">
- <button class="btn btn-small"><</button>
- <button class="btn btn-small">1</button>
- <button class="btn btn-small">></button>
- </div>
- <div class="m-clear"></div>
- </article>
- <div class="m-spacer"></div>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|