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
[#if devices?? && devices?size>0]
                    <table class="display_form common_list_table">
                        <tr class="title">
                            <td width="5%"><input id="selOrCancel" type="checkbox" class="device" onchange="selOrCancel()"/></td>
                               <td width="10%">序号</td>
                               <td width="25%">配置名称</td>
                               <td width="15%">搜索码</td>
                               <td width="25%">存放位置</td>
                               <td width="20%">${Constants.UNIT_CONSTANTS}</td>
                               
                           </tr>
                               [#list devices as ci]
                                <tr>
                                    <td class="list_btnmore_wrap">
                                           <input name="device" type="checkbox" class="device selectItem" value="${ci.ID}" />
                                           <input type="hidden" name="cus_id" value="${ci.CUS_ID}"/>
                                           <input type="hidden" name="sub_cus_id" value="${ci.SUB_CUS_ID}"/>
                                       </td>
                                    <td>${ci_index+1}</td>
                                       <td>${ci.CINAME}</td>
                                       <td>${ci.SEARCHCODE}</td>
                                       <td>${ci.POSITION}</td>
                                       <td>${ci.SUB_CUS_NAME}</td>
                                       
                                </tr>
                               [/#list]
                    </table>
                       [#else]
                       <div class="loadpos"><span class="nodata"></span></div>
                       [/#if]