cy
2022-06-23 b83c40548208609d0d6826be13d742c28a784806
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
<!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.PRIORITY_LEVEL_NAME}</td>
      </tr>
     
      <tr>
        <th>配置分类:</th>
        <td >${item.BUSINESS_NAME}</td>
        <th>期望值:</th>
        <td >${StringUtil.str2Html(item.EXPECT_VALUE)}</td>
      </tr>
      
      <tr>
        <th>提醒项描述:</th>
        <td >${StringUtil.str2Html(item.ITEM_NOTE)}</td>
        <th>检测标准及方法:</th>
        <td >${StringUtil.str2Html(item.STEPS)}</td>
      </tr>
      
      <tr>
          <th>提醒项类型:</th>
          <td >[#if item.ITEM_TYPE==1]通用[#elseif item.ITEM_TYPE==2]定制[/#if]</td>
          <th>显示顺序:</th>
          <td>${item.ORDER_NUM}</td>
      </tr>
      
            
    </table>
[/#if]
 
</body>
</html>