cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>${Constants.company_name}综合管理平台</title>
<link rel="stylesheet" href="${common_static}/static/ui/css/reset.css" type="text/css"></link>
<link rel="stylesheet" href="${common_static}/static/ui/css/common.css" type="text/css"></link>
</head>
 
<script>
function subForm(){
    document.getElementById('myform').submit();
}
</script>
<body class="change-h100">
<div class="login_top clearfix">
    <a class="larks_logo"><img src="${common_static}/static/companyLogo/larks-logo1.gif" width="247" height="48" alt="" /></a>
    <p>
        <a>网站首页</a>
        <span>|</span>
        <a>用户帮助</a>
        <span>|</span>
        <em>客服热线:0371-86610066</em>
    </p>
</div>
<div class="change-pw-wrap">
    <div class="title">请选择桌面类型</div>
      <ul class="choose-dt">
          <form id="myform" action="selDesk.html" method="post">
        [#if list??&&list?size>0]
        [#list list as item]
            <li>
                <span class="types">${item.rolename}</span><input type="radio" name="roleId" value="${item.id}"/>
            </li>
        [/#list]
        [/#if]
        <li class="last"><button onclick="javascript:subForm()">提交</button></li>
        </form>
 
    </ul>
    <div class="footer clearfix">
        <a> 意见反馈 </a><span>|</span><a> 帮助说明 </a><span>|</span><a> 关于运维 </a><span>|</span><a> 联系我们 </a> <br>
        <em>Copyright © 1996-2022 ${Constants.company_name}</em>
    </div>
</div>
</body>
</html>