123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <%--
- time:2011-11-28 10:17:09
- --%>
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>用户表明细</title>
- <%@include file="/commons/include/get.jsp"%>
- <script type="text/javascript" src="${ctx }/js/lg/plugins/ligerTab.js"></script>
- <script type="text/javascript">
- /*KILLDIALOG*/
- var dialog =null;
- try{
- dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
- }catch(e){
-
- }
- $(function() {
- var h = $('body').height();
- $("#tabMyInfo").ligerTab({
- // height : h - 60
- });
- });
-
- </script>
- </head>
- <body>
-
-
- <div class="panel-toolbar" id="pToolbar">
- <div class="toolBar">
- <c:if test="${canReturn==0 && openType!='detail'}">
- <div class="group">
- <a class="link back" href="${returnUrl}" ><span></span>返回</a>
- </div>
- </c:if>
- <c:if test="${openType=='detail'}">
- <div class="group">
- <a class="link close" href="javascript:;" onclick="dialog.close();"><span></span>关闭</a>
- </div>
- </c:if>
- <c:if test="${canReturn==1}">
- <div class="group">
- <a class="link back" href="${ctx}/platform/system/sysUser/editCommon.ht" ><span></span>修改信息</a>
- </div>
- </c:if>
- </div>
- </div>
-
-
- <div id="tabMyInfo" style="overflow: hidden; position: relative;">
- <div title="基本信息" tabid="userdetail"
- icon="${ctx}/styles/default/images/resicon/user.gif">
- <div class="panel-detail">
- <table class="table-detail" cellpadding="0" cellspacing="0"
- border="0">
- <tr>
- <td rowspan="11" align="center" width="26%">
- <div class="person_pic_div">
- <p><img src="${ctx}/${pictureLoad}" alt="个人相片" style="width: 100%;height: 480px" /></p>
- </div>
- </td>
- <th width="18%" style="height: 48px !important">帐 号:</th>
- <td>${sysUser.account}</td>
- </tr>
- <tr>
- <th style="height: 48px !important">用户姓名:</th>
- <td>${sysUser.fullname}</td>
- </tr>
- <tr>
- <th style="height: 48px !important">用户性别:</th>
- <td><c:choose>
- <c:when test="${sysUser.sex==1}">
- 男
- </c:when>
- <c:otherwise>
- 女
- </c:otherwise>
- </c:choose></td>
- </tr>
- <tr>
- <th style="height: 48px !important">是否锁定:</th>
- <td><c:choose>
- <c:when test="${sysUser.isLock==1}">
- 已锁定
- </c:when>
- <c:otherwise>
- 未锁定
- </c:otherwise>
- </c:choose></td>
- </tr>
- <tr>
- <th style="height: 48px !important">是否过期:</th>
- <td><c:choose>
- <c:when test="${sysUser.isExpired==1}">
- 已过期
- </c:when>
- <c:otherwise>
- 未过期
- </c:otherwise>
- </c:choose></td>
- </tr>
- <tr>
- <th style="height: 48px !important">当前状态:</th>
- <td><c:choose>
- <c:when test="${sysUser.status==1}">
- 激活
- </c:when>
- <c:when test="${sysUser.status==0}">
- 禁用
- </c:when>
- <c:otherwise>
- 删除
- </c:otherwise>
- </c:choose></td>
- </tr>
- <tr>
- <th style="height: 48px !important">创建时间:</th>
- <td>${f:shortDate(sysUser.createtime)}</td>
- </tr>
- <tr>
- <th style="height: 48px !important">邮箱地址:</th>
- <td>${sysUser.email}</td>
- </tr>
- <tr>
- <th>微 信: </th>
- <td>${sysUser.weixinid}</td>
- </tr>
- <tr>
- <th style="height: 48px !important">手 机:</th>
- <td>${sysUser.mobile}</td>
- </tr>
- <tr>
- <th style="height: 48px !important">电 话:</th>
- <td>${sysUser.phone}</td>
- </tr>
- </table>
- </div>
- </div>
- <div title="职责描述" tabid="orgdetailresponsibility">
- <c:forEach items="${orgList}" var="orgItem" varStatus="status">
- <table class="table-grid" cellpadding="1"
- cellspacing="1">
- <tr>
- <th style="width: 50%; text-align: center !important;">部门职责
- </th>
- <th style="width: 50%; text-align: center !important;">
- 职责描述
- </th>
- </tr>
- <tr>
- <td style="width: 50%;text-align: center !important;"><div>${orgItem.orgDesc}</div>
- </td>
- <td style="width: 50%;text-align: center !important;">
-
- <div>${orgItem.responsibilityDetail}</div>
- </td>
- </tr>
- </table>
-
-
- </c:forEach>
- </div>
- <c:if test="${isOtherLink==0}">
- <div title="所属组织" tabid="orgdetail"
- icon="${ctx}/styles/default/images/resicon/home.png">
- <div
- style="overflow-y: auto; overflow-x: hidden; border: 0px solid #6F8DC6;">
- <div class="panel-data">
- <table id="orgItem" class="table-grid" cellpadding="1"
- cellspacing="1">
- <thead>
- <th style="width: 25%; text-align: center !important;">组织名称</th>
- <th style="width: 25%; text-align: center !important;">是否主组织</th>
- <th style="width: 50%; text-align: center !important;">主要负责人</th>
- </thead>
- <c:forEach items="${orgList}" var="orgItem" varStatus="status">
- <tr class="${status.index%2==0?'odd':'even'}">
- <td style="text-align: center;">${orgItem.orgName}</td>
- <td style="text-align: center;"><c:choose>
- <c:when test="${orgItem.isPrimary==1}">
- 是
- </c:when>
- <c:otherwise>
- 否
- </c:otherwise>
- </c:choose></td>
- <!-- <td style="text-align: center;">${orgItem.chargeName}</td> -->
- <td style="text-align: center;">
- <c:choose>
- <c:when test="${orgItem.isCharge==1}">
- 是
- </c:when>
- <c:otherwise>
- 否
- </c:otherwise>
- </c:choose>
- </td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </div>
- </div>
- <div title="所属岗位" tabid="posdetail"
- icon="${ctx}/styles/default/images/nav-sales.png">
- <div
- style="overflow-y: auto; overflow-x: hidden; border: 0px solid #6F8DC6;">
- <div class="panel-data">
- <table id="posItem" class="table-grid" cellpadding="1"
- cellspacing="1">
- <thead>
- <th style="width: 25%; text-align: center !important;">岗位名称</th>
- <th style="width: 25%; text-align: center !important;">是否主岗位</th>
- </thead>
- <c:forEach items="${posList}" var="posItem" varStatus="status">
- <tr class="${status.index%2==0?'odd':'even'}">
- <td style="text-align: center;">${posItem.posName}</td>
- <td style="text-align: center;"><c:choose>
- <c:when test="${posItem.isPrimary==1}">
- 是
- </c:when>
- <c:otherwise>
- 否
- </c:otherwise>
- </c:choose></td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </div>
- </div>
- <div title="所属角色" tabid="roldetail"
- icon="${ctx}/styles/default/images/resicon/customer.png">
- <div
- style="overflow-y: auto; overflow-x: hidden; border: 0px solid #6F8DC6;">
- <div class="panel-data">
- <table id="rolItem" class="table-grid" cellpadding="1"
- cellspacing="1">
- <thead>
- <th style="width: 25%; text-align: center !important;">角色名称</th>
- <th style="width: 25%; text-align: center !important;">子系统名称</th>
- </thead>
- <c:forEach items="${roleList}" var="rolItem" varStatus="status">
- <tr class="${status.index%2==0?'odd':'even'}">
- <td style="text-align: center;">${rolItem.roleName}</td>
- <td style="text-align: center;">${rolItem.systemName}</td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </div>
- </div>
-
- <div title="所属组织角色" tabid="orgRoldetail"
- icon="${ctx}/styles/default/images/resicon/customer.png">
- <div
- style="overflow-y: auto; overflow-x: hidden; border: 0px solid #6F8DC6;">
- <div class="panel-data">
- <table id="rolItem" class="table-grid" cellpadding="1"
- cellspacing="1">
- <thead>
- <th style="width: 25%; text-align: center !important;">组织</th>
- <th style="width: 25%; text-align: center !important;">角色</th>
- </thead>
- <c:forEach items="${sysOrgRoles}" var="sysOrgRole">
- <tr>
- <td style="text-align: center;">
- ${sysOrgRole.key.orgName}
- </td>
- <td style="text-align: center;">
- <c:forEach items="${sysOrgRole.value}" var="sysRole">
- ${sysRole.roleName}
- </c:forEach>
- </td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </div>
- </div>
-
- <div title="参数属性" tabid="params"
- icon="${ctx}/styles/default/images/resicon/article.gif">
- <div
- style="overflow-y: auto; overflow-x: hidden; border: 0px solid #6F8DC6;">
- <div class="panel-detail">
- <table id="paramItem" class="table-grid" cellpadding="1"
- cellspacing="1">
- <thead>
- <th style="width: 25%; text-align: center !important;">参数名</th>
- <th style="width: 25%; text-align: center !important;">参数值</th>
- </thead>
- <c:forEach items="${userParamList}" var="para" varStatus="status">
- <tr class="${status.index%2==0?'odd':'even'}">
- <td style="text-align: center;">${para.paramName}</td>
- <td style="text-align: center;">${para.paramValue}</td>
- </tr>
- </c:forEach>
- </table>
- </div>
- </div>
- </div>
- </c:if>
- </div>
- </body>
- </html>
|