12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <%@ 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/user/userroleUnSyn.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- user.userrole.allData='${AllRoleList}';
- user.userrole.init();
- user.userrole.synStatus();
- });
- </script>
- </head>
- <body>
- <div class="ch-container">
- <input type="hidden" id="userId" value="${userId}">
- <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="user.userrole.all()"> <i
- class="glyphicon glyphicon-ok"></i> 全选
- </a> <a class="btn btn-default btn-sm" href="#"
- onclick="user.userrole.notall()"> <i
- class="glyphicon glyphicon-remove"></i> 全不选
- </a> <a class="btn btn-default btn-sm" href="#"
- onclick="user.userrole.save()"> <i
- class="glyphicon glyphicon-floppy-saved"></i> 保存
- </a> <a class="btn btn-default btn-sm" href="#"
- onclick="user.userrole.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>
- <th width="10%">是否同步</th>
- <th width="10%">是否存在</th><!-- 是否关联 -->
- </tr>
- </thead>
- <tbody id="divcontent">
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <!--/span-->
- </div>
- <!--/row-->
- </div>
- </body>
- </html>
|