<!doctype html>
|
<html>
|
<head>
|
[#include "/business/wechat/include/title.html" /]
|
[#include "/business/wechat/include/wheader.html" /]
|
</head>
|
|
<body>
|
|
<header class="kltit">
|
<a href="javascript:history.go(-1);"><span></span></a>巡检指标详情
|
</header>
|
|
[#if item?? && item?size>0]
|
<h2 class="kldetailtit">${item.ITEM_NAME}</h2>
|
<section class="kldetail">
|
<h3><span class="subicon1"></span>正常值</h3>
|
<p><span class="m5">${item.NORMAL_VALUE}</span></p>
|
<h3><span class="subicon2"></span>概述</h3>
|
<p class="fontcolor9">
|
${StringUtil.str2Html(item.ITEM_NOTE)}
|
</p>
|
<h3><span class="subicon3"></span>采集步骤</h3>
|
<p>
|
${StringUtil.str2Html(item.GET_STEPS)}
|
</p>
|
|
|
<h3><span class="subicon3"></span>异常值及处理方式</h3>
|
<p>
|
${StringUtil.str2Html(item.EXCEPT_VALUE)}
|
</p>
|
|
</section>
|
[/#if]
|
|
</body>
|
</html>
|