12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=9" ></meta>
- <title>用户信息表</title>
- <%@include file="../../include.jsp" %>
- <script type="text/javascript" src="../../../scripts/freamwork/com/sinosoft/system/user/UsetList.js"></script>
- <script type="text/javascript" src="<%=path%>/scripts/business/am/org/maintenance/orgSel.js"></script>
- <style type="text/css">
- .td-move{
- padding: 10px 5px 0px 0px;
- }
- </style>
-
- </head>
- <body>
- <div id="layout1">
- <!-- 左边的树 -->
- <div position="left" id="hztitle" style="margin-right:10px;">
- <div class="layout_content">
- <ul id="treeDept-gzfw" class="ztree"></ul>
- </div>
- </div>
-
- <div class="plan_detail" id="plan_detail" position="center">
- <div class="box2" panelTitle="用户信息查询" id="searchPanel">
- <form id="queryUserForm" method="post">
- <input type="hidden" id="listId" name="listId" value="880"/>
- <table class="table-style" >
- <!-- <tr>
- <td align="right">所属单位:</td>
- <td colspan="3"><div style="width:520px;" id="UNITS_214"></div>
- </td>
-
- </tr> -->
- <tr>
- <td align="right">应急角色:</td>
- <td colspan="3">
- <div class="selectTree" id="ROLE_ID_SHOW" multiMode="true" noGroup="true" selWidth="472" ></div>
- </td>
-
- </tr>
-
- <tr>
-
- <td>用户名:</td>
- <td>
- <input type="text" id="LOGIN_NAME_880" name="LOGIN_NAME_880" maxlength="20"/>
- </td>
- <td>姓名:</td>
- <td>
- <input type="text" id="REAL_NAME_880" name="REAL_NAME_880" maxlength="20"/>
- </td>
-
- <td>
- <button type="button" onclick="searchHandler()" id="search"><span class="icon_find">查询</span></button>
-
- <button type="button" onclick="$.user.clear_msg()"><span class="icon_reload">清空查询条件</span></button>
- </td>
- <td>
-
- </td>
- </tr>
- </table>
- </form>
- </div>
- <div class="padding_right5">
- <div id="dataGrid_880"></div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- function initComplete(){
- document.onkeydown=keyListener;
- function keyListener(e){
- if(e.keyCode == 13){
- $('#search').click();
- }
- }
-
- $.post('/nwyj/ws/sys/UserRoleRelService/getRoleSelect1',function(data){
- $("#ROLE_ID_SHOW").data("data",data);
- $("#ROLE_ID_SHOW").render();
- }, "json");
- $("#ROLE_ID_SHOW").live("change",ORG_OK_Event);
- }
- function ORG_OK_Event(){
- $('#search').click();
- }
- </script>
- </body>
- </html>
|