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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!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" />
[#include "/business/pages/include/static.html" /]
<link rel="stylesheet" href="${common_static}/static/css/reset.css" />
<style>
.personcont {
    width: 98%;
    margin: 1%;
    font: 12px "宋体";
    min-width: 800px;
}
.personalist {
    background:#f0f0f0;border-bottom:dotted 1px #d1d1d1;
    margin: 0px 15px;
    border-left: solid 1px #d1d1d1;
    border-right: solid 1px #d1d1d1;
    line-height: 30px;
    padding: 0;
}
.personalist:first-child{border-top: solid 1px #d1d1d1;}
.personalistnon {
    background:#fff;
    padding: 8px 0;
    overflow: hidden;
    zoom: 1;
    border-bottom: dotted 1px #d1d1d1;
}
.personalistnon:last-child{border-bottom: solid 1px #d1d1d1;}
.personalistl {
    width: 15%;
    float: left;
}
.personalisttit {
    background: #f0f0f0;
    border-width: 0 0 1px 0;
    line-height: 41px;
}
 
.personalist span {
    color: #434343;
    font-weight: bold;
}
.personalist span.span {
}
.personalist_chk {
    margin: 0px 5px 0px 16px;
    position: relative;
    top: 3px;
}
.personalist_chkbox {
    margin:6px 8px 11px 20%;
    float:left;
}
.personalist_chkboxthree {
    margin:6px 8px 12px 30%;
    float:left;    
}
.personalistr {
    float: left;
    width: 85%;
}
.personalistr li {
    float: left;
    color: #666;
    list-style: none;
    margin-bottom: 0px;
}
.personalistr li.li {
    color: #333;
}
.personalistr li.li a {
    color: #666;
}
.personalistr li.li a:hover {
    color: #00f;
}
 
</style>
<script type="text/javascript">
 
$(function() {
    $.formValidator.initConfig({formID:"myform",onError:function(msg){popupTips(msg)},onSuccess:function(){
                        document.getElementById("myform").target = window.top.openDialog("1","操作",
                         {},
                         {"width":40,"height":40},[{btnId:"tipBtnSure", btnName:"确定", btnStyle:"bluebtn"}]);
                         return true;
        }});
        
})
 
 
function onDialogBtnClick(btnID, dialogID, config){
        if(btnID == "btnSure"){
            $("#myform").submit();
        }
    }
 
</script>
<title>无标题文档</title>
</head>
 
<body class="edit_txt_body" style="padding:5px 10px 5px 10px;">
<form action="groupuserSubmit.html"  method="post"  id="myform" name="myform">
<input type="hidden" value="${RequestParameters.id}" name="groupid" />
 
<table class="edit_layout" width="99%">
    [#if info?? && info?size > 0]
     [#list info as a]
       <tr><td colspan="2" ><input name="userid" type="checkbox" [#if a.check??]checked="checked"[/#if] value="${a.ID}"/><label style="margin-left:5px;">${a.ZSXM}</label></td>
       </tr>
     [/#list]
    [/#if]
 </table>
</form>
</body>
</html>