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
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    [#include "/business/wechat/include/title.html" /]
    [#include "/business/wechat/include/wheader.html" /]
</head>
 
<body>
<header class="kltit"><a href="javascript:history.go(-1);"><span></span></a>我的资料</header>
<section class="wlresponse wldetailtwo">
    <p>
        <span>姓名</span>
        <label>${user.CONTACT_NAME}</label>
    </p>
    <p>
        <span>登录名</span>
        <label>${user.LOGIN_NAME}</label>
    </p>
    <p>
        <span>业务科室</span>
        <label>${user.YWKS}</label>
    </p>
    <p>
        <span>职务</span>
        <label>${user.ZW}</label>
    </p>
    <p>
        <span>联系方式</span>
        <label>${user.CONTACTS_TYPE}</label>
    </p>
    <p>
        <span>办公电话</span>
        <label>${user.TELEPHONE}</label>
    </p>
    <p>
        <span>手机</span>
        <label>${user.MOBILE}</label>
    </p>
    <p>
        <span>Email</span>
        <label>${user.EMAIL}</label>
    </p>
    <p>
        <span>邮箱验证</span>
        [#if user.ISEMAIL == 2]
        <label>已验证</label>
        [#else]
        <label>未验证</label>
        [/#if]
    </p>
    <p>
        <span>手机号验证</span>
        [#if user.ISPHONE == 2]
        <label>已验证</label>
        [#else]
        <label>未验证</label>
        [/#if]
    </p>
    <p>
        <span>重要等级</span>
        <label>${user.LEVEL_NAME}</label>
    </p>
   
</section>
</body>
</html>