cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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=7" />
<title>修改密码</title>
[@formui /]
</head>
<body>
<style type="text/css">
    html{_overflow-y:scroll}
</style>
<script type="text/javascript">
function _onFormSubmit(){
    window.location.href = "${base}/business/pages/xtgl/yhgl/addYh.html?id=${info.ID}&show=1";
}
function closeWin(){
       window.top.closeDialog(0);
}
</script>  
 
<div class="pad_10" style="margin-top: 10px;">
<div class="col-tab">
<div id="div_setting_1" class="contentList pad_10">
<form name="myform" action="addYhSubmit.html" method="post" id="myform" enctype="multipart/form-data" >
<input type="hidden" name="id" id="id"  value="${RequestParameters.id}" />
<input type="hidden" name="ssbmbh" id="ssbmbh"  value="${RequestParameters.bmbh!info.SSBMBH}" />
<table width="100%" class="table_form contentWrap">
<tr>
<th width="10%">登 陆 名</th>
<td width="40%">${info.LOGINNAME}</td>
<th width="10%">真实姓名</th>
<td width="40%">${info.ZSXM}</td>
</tr>
<tr>
<th>手机号码</th>
<td>${info.SJHM}</td>
<th >EMAIL</th>
<td>${info.EMAIL}</td>
</tr>
<tr>
<th>岗位名称</th>
<td>${info.GWMC}</td>
<th >办公电话</th>
<td>${info.BGDH}</td>
</tr>
<tr>
<th>年龄</th>
<td>${info.AGE}</td>
<th>性别</th>
<td>${info.XINGB}</td>
</tr>
<tr>
<th>上次登录IP</th>
<td>${info.LASTIP}</td>
<th>上次登录时间</th>
<td>${format(info.LASTTIME,'yyyy-MM-dd HH:mm:ss')}</td>
</tr>
<tr>
<th>本次登录IP</th>
<td>${info.THISIP}</td>
<th>本次登录时间</th>
<td>${format(info.THISTIME,'yyyy-MM-dd HH:mm:ss')}</td>
</tr>
<tr>
<th>备注</th>
<td colspan="3">${info.BEIZ}</td>
</tr>
 
</table>
</form>
</div>
</div>
</div>
</body>
</html>