12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@taglib uri="/struts-tags" prefix="s"%>
- <%
- String path = request.getContextPath();
- %>
- <!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" />
- <title>查看用户信息</title>
- <!--框架必需start-->
- <script type="text/javascript" src="<%=path%>/libs/js/jquery.js"></script>
- <script type="text/javascript" src="<%=path%>/libs/js/language/cn.js"></script>
- <script type="text/javascript" src="<%=path%>/libs/js/framework.js"></script>
- <link href="<%=path%>/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
- <link rel="stylesheet" type="text/css" id="skin" prePath="<%=path%>/"/>
- <link rel="stylesheet" type="text/css" id="customSkin"/>
- <!--框架必需end-->
- </head>
- <body>
- <div class="box1" id="formContent" whiteBg="true">
- <table class="tableStyle" formMode="view">
- <tr>
- <th colspan="2">用户信息</th>
- </tr>
- <tr>
- <td width="150">用户名:</td>
- <td><s:property value="%{userinfor.userLoginName}"/></td>
- </tr>
- <tr>
- <td>密码:</td>
- <td><s:property value="%{userinfor.userPassword}"/></td>
- </tr>
- <tr>
- <td width="150">姓名:</td>
- <td><s:property value="%{userinfor.userName}"/></td>
- </tr>
- <tr>
- <td>所属部门:</td>
- <td><s:property value="%{userinfor.organization.orgName}"/></td>
- </tr>
- <tr>
- <td>性别:</td>
- <td>
- <s:if test="%{userinfor.userSex == null}"></s:if>
- <s:else>
- <s:if test="%{userinfor.userSex == 1}">男</s:if><s:else>女</s:else>
- </s:else>
- </td>
- </tr>
- <tr>
- <td>入职时间:</td>
- <td><s:property value="%{userinfor.userEmployTime}"/></td>
- </tr>
- <tr>
- <td>学历:</td>
- <td>
- <s:if test="%{userinfor.userEducation == '1'}">专科</s:if>
- <s:elseif test="%{userinfor.userEducation == '2'}">本科</s:elseif>
- <s:elseif test="%{userinfor.userEducation == '3'}">硕士</s:elseif>
- <s:else>博士</s:else>
- </td>
- </tr>
- </table>
- </div>
- </body>
- </html>
|