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
56
57
58
59
60
61
62
63
<!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 info?? && info?size>0]
    <table  class="basicinfo2" >
  <tr>
    <th style="width:20%;">分类名称:</th>
    <td class="td">${info.BUSINESS_NAME}</td>
  </tr>
  <tr>
    <th>指标名称:</th>
    <td class="td">${info.ITEM_NAME}</td>
  </tr>
  <tr>
    <th>指标说明:</th>
    <td class="td">${StringUtil.str2Html(info.ITEM_NOTE)}</td>
  </tr>
  <tr>
    <th>采集步骤:</th>
    <td class="td">${StringUtil.str2Html(info.GET_STEPS)}</td>
  </tr>
  
  <tr>
    <th>正常值:</th>
    <td class="td">${info.NORMAL_VALUE}</td>
  </tr>
  
  <tr>
    <th>异常值及处理方式:</th>
    <td class="td">${StringUtil.str2Html(info.EXCEPT_VALUE)}</td>
  </tr>
  
  <tr>
    <th>显示顺序:</th>
    <td class="td">${info.ORDER_NUM}</td>
  </tr>
  
  <tr>
    <th>状态:</th>
    <td class="td">[#if info.STATE==1]启用[#else]禁用[/#if]</td>
  </tr>
  
  <tr>
    <th>提醒项类型:</th>
    <td class="td">[#if info.ITEM_TYPE==1]通用[#else]定制[/#if]</td>
  </tr>
</table>
[/#if]
 
 
</body>
 
 
</html>