12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <%@ page contentType="text/html;charset=utf-8"%>
- <%@ include file="/WEB-INF/jsp/include.jsp"%>
- <html>
- <head>
- <meta http-equiv="expires" content="0" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <script type="text/javascript">
- // $(function(){
- // $.ajaxSetup ({ cache: false});
- // $("#submit").click(function(){
- // $("#myManage").triggerHandler("taijiModalPost",[$("#myForm"),{table:"none"}]);
- // });
- // });
- </script>
- </head>
- <body>
-
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title">审批人详情</h4>
- </div>
-
- <div class="modal-body">
- <table class="table table-striped table-bordered table-hover">
- <tr>
- <th>名称</th>
- <td>${pageModel.name }</td>
- </tr>
- <tr>
- <th>登录名</th>
- <td>${pageModel.loginName }</td>
- </tr>
- <tr>
- <th>性别</th>
- <td>${pageModel.male }</td>
- </tr>
- <tr>
- <th>电话</th>
- <td>${pageModel.mobile }</td>
- </tr>
- <tr>
- <th>状态</th>
- <td>${pageModel.status }</td>
- </tr>
- <tr>
- <th>角色id</th>
- <td>${pageModel.roleId }</td>
- </tr>
- <tr>
- <th>单位id</th>
- <td>${pageModel.unit }</td>
- </tr>
- </table>
- </div>
- <div class="modal-footer">
- <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
- </div>
-
- </body>
- </html>
|