<!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>
|
<section class="wlrecorddetail">
|
<p>处理状态:
|
[#if info.DEAL_STATE==1]未完成[/#if]
|
[#if info.DEAL_STATE==2]已完成[/#if]
|
</p>
|
<p>指标结果:
|
[#if info.item_result==1]正常[/#if]
|
[#if info.item_result==2]告警[/#if]
|
[#if info.item_result==3]异常[/#if]
|
</p>
|
<p>开始时间:${DateUtil.format("yyyy-MM-dd HH:mm",info.START_TIME)}</p>
|
<p>结束时间:${DateUtil.format("yyyy-MM-dd HH:mm",info.FINISH_TIME)}</p>
|
<p>过程总结:${info.ORDER_NOTE}</p>
|
</section>
|
|
|
</body>
|
</html>
|