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
53
54
55
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>指标项详情</title>
[#include "/business/pages/include/static.html" /]
</head>
 
<body class="end_task_body widthauto">
[#if item?? && item?size>0]
    <table  class=" basicinfo2" border="0">
      <tr>
        <th >指标名称:</th>
        <td >${item.ITEM_NAME}</td>
        <th>配置三级分类:</th>
        <td>${item.BUSINESS_NAME}</td>
      </tr>
      
      <tr>
        <th>指标说明:</th>
        <td colspan="3">${StringUtil.str2Html(item.ITEM_NAME)}</td>
      </tr>
      <tr>
        <th>采集步骤:</th>
        <td colspan="3">${StringUtil.str2Html(item.GET_STEPS)}</td>
      </tr>
      
      
      
      
      <tr>
        <th>正常值:</th>
        <td colspan="3">${item.NORMAL_VALUE}</td>
      </tr>
      
      <tr>
        <th>异常值及处理方式:</th>
        <td colspan="3">${StringUtil.str2Html(item.EXCEPT_VALUE)}</td>
      </tr>
      
      
      <tr>
          <th>提醒项类型:</th>
          <td >${Constants.getmapCI_DAILY_PATROL_ITEM_ITEM_TYPE_Label(item.ITEM_TYPE)}</td>
          <th>显示顺序:</th>
          <td >${item.ORDER_NUM}</td>
      </tr>
      
     
      
    </table>
[/#if]
 
</body>
</html>