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
[#include "/business/pages/include/static.html" /]
[#if items?? && items.datas?size>0]
                    <table class="display_form common_list_table">
                        <tr class="title">
                            <td width="5%">
                                <input type="checkbox" id="checkAll" class="item" onchange="selOrCancel()">
                               </td>
                               <td width="10%">序号</td>
                               <td width="25%">指标名称</td>
                               <td width="15%">配置三级分类</td>
                               <td width="40%">指标说明</td>
                               <td width="10%">正常值</td>
                           </tr>
                               [#list items.datas as item]
                                <tr>
                                    <td class="list_btnmore_wrap">
                                           <a class="blue_txt lb_button" href="javascript:void(0);"><span  style="border:none;"><input type="checkbox" value="${item.ID}" name="item" class="item selectItem"></span></a>
                                       </td>
                                    <td>${items.rowNum+item_index+1}</td>
                                       <td>${item.ITEM_NAME}</td>
                                       <td>${item.BUSINESS_NAME}</td>
                                       <td>${item.ITEM_NOTE}</td>
                                       <td>${item.NORMAL_VALUE}</td>
                                       
                                </tr>
                               [/#list]
                    </table>
                       [#else]
                       <div class="loadpos"><span class="nodata"></span></div>
                       [/#if]