<!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>
|