123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>通用平台</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../common.jsp"%>
- <link rel="stylesheet" type="text/css" href="${app }/css/other.css" />
- <script type="text/javascript" src="${app}/js/base.js"></script>
- <script type="text/javascript" src="${app }/static/biz/js/role/rolemenufunc.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- role.rolemenufunc.allData='${allMenu }';
- role.rolemenufunc.init();
- });
- </script>
- </head>
- <body>
- <div class="ch-container">
- <input type="hidden" id="roleid" value="${roleid }">
- <div class="row">
- <div class="box col-md-12">
- <div class="box-inner">
- <div class="box-header well" data-original-title="11">
- <h2><i class="glyphicon "></i> 系统设置>角色授权</h2>
- </div>
- <div class="box-content">
- <table class="search_button_table" >
- <tr style="height:60px;">
- <td>
- </td>
- <td >
-
- </td>
- <td>
- <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.all()">
- <i class="glyphicon glyphicon-ok"></i>
- 全选</a>
- <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.notall()">
- <i class="glyphicon glyphicon-remove"></i>
- 全不选</a>
- <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.save()">
- <i class="glyphicon glyphicon-floppy-saved"></i>
- 保存</a>
- <a class="btn btn-default btn-sm" href="#" onclick="role.rolemenufunc.back()">
- <i class="glyphicon glyphicon-circle-arrow-left"></i>
- 返回</a>
-
- </td>
- </tr>
- </table>
- <!-- 列表 -->
- <table class="table_ud">
- <thead>
- <tr>
- <th width="30%">菜单</th>
- <th width="10%">授权</th>
- </tr>
- </thead>
- <tbody id="divcontent">
- </tbody>
- </table>
-
- </div>
- </div>
- </div>
- <!--/span-->
- </div><!--/row-->
- </div>
- </body>
- </html>
|