<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>基本信息</title>
|
</head>
|
|
<body>
|
[#include "/business/pages/include/static.html" /]
|
[#include "/component/DatePicker.html" /]
|
|
<div class="fs_main fs_edit">
|
<div class="edit_title"><h3>基本信息</h3></div>
|
<form id="myform" method="post">
|
<table class="edit_layout2 basicinfo" width="100%">
|
<tr>
|
<th><label>${Constants.CUSTOMER_CONSTANTS}名称:</label></th>
|
<td><span class="infotxt">${health.customer_name}</span></td>
|
<th><label>${Constants.UNIT_CONSTANTS}:</label></th>
|
<td><span class="infotxt">${health.sub_customer_name}</span></td>
|
</tr>
|
|
<tr>
|
<th ><label>联系人:</label></th>
|
<td>
|
<span class="infotxt">${health.contacts_name}</span>
|
</td>
|
<th><label>联系方式:</label></th>
|
<td>
|
<span class="infotxt">${health.contacts_tel}</span>
|
</td>
|
</tr>
|
|
<tr>
|
<th style="width:120px"><label>计划巡检日期:</label></th>
|
<td>
|
${DateUtil.format("yyyy-MM-dd",health.plan_exe_date)}
|
</td>
|
<th style="width:120px"><label>巡检执行日期:</label></th>
|
<td>
|
${DateUtil.format("yyyy-MM-dd",health.plan_time)}
|
</td>
|
</tr>
|
|
</table>
|
</form>
|
<br/>
|
<div class="edit_title"><h3>巡检配置</h3></div>
|
<div class="table_basic">
|
<table id="myList">
|
[#if ciList??&&ciList?size>0]
|
[#list ciList as ci]
|
<tr >
|
<td colspan="5">
|
<a class="blue_txt lb_button" target="_blank" href="${base}/business/pages/cfg/cfgInfoIndex.html?id=${ci.CIID}">${ci.text}</a>
|
<a style="float:right" class='edit' href="javascript:ciPatrol('${ci.id}')">备注</a>
|
</td>
|
</tr>
|
[#if ci.children??&&ci.children?size>0]
|
<tr style="margin-left: 20px">
|
<td style="padding-left:40px;">指标名称</td>
|
<td>执行人</td>
|
<td>执行情况</td>
|
<td>巡检结果</td>
|
<td width="10%">操作</td>
|
</tr>
|
[#list ci.children as item]
|
<tr style="margin-left: 20px">
|
<td style="padding-left:40px;">${item.ITEM_NAME}</td>
|
<td>${item.USER_NAME}</td>
|
<td>
|
[#if item.DEAL_STATE==1]
|
未完成
|
[#elseif item.DEAL_STATE==2]
|
已完成
|
[#elseif item.DEAL_STATE==3]
|
未执行
|
[/#if]
|
</td>
|
<td>
|
[#if item.ITEM_RESULT==1]
|
正常
|
[#elseif item.ITEM_RESULT==2]
|
告警
|
[#elseif item.ITEM_RESULT==3]
|
异常
|
[/#if]
|
</td>
|
<td width="15%">
|
<a class='edit' href="javascript:ciItemPatrol('${item.id}')">明细</a>
|
</td>
|
</tr>
|
[/#list]
|
[/#if]
|
[/#list]
|
[#else]
|
<td colspan="5" align="center">暂无信息</td>
|
[/#if]
|
</table>
|
</div>
|
|
</div>
|
<script type="text/javascript">
|
|
function ciItemPatrol(patrolItemId){
|
window.top.openDialog("1","指标巡检",
|
{},
|
{"width":"70","height":"70"},
|
[],
|
"${base}/business/pages/health/healthItemPatrolRead.html?patrolItemId="+patrolItemId+"&flowId=${RequestParameters.flowId}");
|
}
|
|
function ciPatrol(patrolCiId){
|
window.top.openDialog("1","配置巡检",
|
{},
|
{"width":"70","height":"60"},
|
[],
|
"${base}/business/pages/health/healthCiPatrolRead.html?patrolCiId="+patrolCiId+"&flowId=${RequestParameters.flowId}");
|
}
|
|
</script>
|
</body>
|
</html>
|