<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title></title>
|
[#include "/business/pages/include/static.html" /]
|
</head>
|
|
<body >
|
<div class="fs_main clearfix" style="margin-top:10px;">
|
<div class="deal_switch_wrap">
|
<div class="deal_switch_con iframecon" style="display:block;" >
|
<table id="selExecutors" class="pab_con">
|
<tr><th>驻场人员:</th><td>
|
[#if users??&&users?size>0]
|
[#list users as user]
|
<div class="pabitem">
|
<input name="checkbox" value="${user.USER_ID}" class="pos" type="radio" /><span>${user.USER_NAME}</span>
|
</div>
|
[/#list]
|
[/#if]
|
</td></tr>
|
<tr>
|
<td><label>流转备注</label></td>
|
<td style="padding:0;">
|
<textarea class="general" style="width:95%;height:100px;border:0;" id="bz" name="bz"></textarea>
|
</td>
|
</tr>
|
</table>
|
</div>
|
</div>
|
</div>
|
<script type="text/javascript">
|
function onDialogBtnClick(btnID, dialogID, config){
|
if(btnID == "btnSure"){
|
var alluserid1 = "";
|
var allusername1 = "";
|
var checkUser = $(":radio:checked");
|
if(checkUser.length==0) {
|
popupTips("请选择人员");
|
return;
|
}
|
alluserid1 = checkUser.val()+"-"+checkUser.next("span").text();
|
allusername1 = checkUser.next("span").text();
|
window.top.selectUser(alluserid1);
|
window.top.hideDialog("personList");
|
}
|
}
|
|
</script>
|
</body>
|
</html>
|