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
<table id="selExecutors" class="pab_con">
    [#if groupList??&&groupList?size>0]
    [#list groupList as group]
        <tr><th>${group.name}</th><td>
        [#assign userList=group.dataList]
            [#if userList??&&userList?size>0]
                [#list userList as user]
                <div class="pabitem">
                <input name="checkbox" value="${user.USER_ID}" class="pos" type="checkbox" /><span>${user.USER_NAME}</span>
                </div>
                [/#list]
            [/#if]
        </td></tr>
    [/#list]
    [/#if]
</table>
<table class="edit_layout">
    <input type="hidden" name="alluserid" id="alluserid" >
    <input type="hidden" name="allusername" id="allusername" >
     <tr>
         <th ><label>主负责人:</label></th>
         <td >
         <input class="general maintitle" type="text" id="name" name="name" style="width:170px;" value="从人员中选择主要负责人" readonly/>
         <input  type="hidden" id="userid" name="userid" style="width:170px;" />
         
         <div id="useridTip" style="display:inline-block;"></div>
         </td>
     </tr>
     <tr>
     <th ><label>人员:</label></th>
     <td>
     <div class="user" >
           
     </div>
     </td>
     </tr>
    </table>