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
<!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>&nbsp;
                                </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>