<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>执行巡检</title>
|
[#include "/business/pages/include/static.html" /]
|
[#include "/component/HtmlEditor.html" /]
|
[#include "/component/DatePicker.html" /]
|
[#include "/component/newupload.html" /]
|
<script type="text/javascript">
|
$(document).ready(function() {
|
$.formValidator.initConfig({formID:"myform",onError:function(msg){popupTips(msg)},onSuccess:function(){
|
document.getElementById("myform").target = window.top.openDialog("0","操作",
|
{},
|
{"width":40,"height":40},
|
[{btnId:"tipBtnSure", btnName:"确定", btnStyle:"bluebtn"}]);
|
return true;
|
}});
|
});
|
</script>
|
|
</head>
|
|
<body class="end_task_body">
|
<div class="end_task">
|
<form id="myform" method="post" action="">
|
<input type="hidden" name="patrolItemId" value='${RequestParameters.patrolItemId}'>
|
<input type="hidden" name="flowId" value='${RequestParameters.flowId}'>
|
<table class="basicinfo2">
|
<tr>
|
<th >处理状态:</th>
|
<td>
|
[#if info.DEAL_STATE==1]未完成[/#if]
|
[#if info.DEAL_STATE==2]已完成[/#if]
|
</td>
|
<th >指标结果:</th>
|
<td>
|
[#if info.item_result==1]正常[/#if]
|
|
[#if info.item_result==2]告警[/#if]
|
|
[#if info.item_result==3]异常[/#if]
|
</td>
|
</tr>
|
|
<tr>
|
<th >开始时间:</th>
|
<td>
|
${DateUtil.format('yyyy-MM-dd HH:mm',info.START_TIME)}
|
<th >结束时间:</th>
|
<td>
|
${DateUtil.format('yyyy-MM-dd HH:mm',info.FINISH_TIME)}
|
</td>
|
</tr>
|
|
|
<th ><label>附件:</label></th>
|
<td>
|
<ul class="file_list">
|
[#list fileList as file]
|
<li><a href="${base}/business/pages/file/downloadFile.html?fileId=${file.ID}"><span>${file.FILE_NAME}</span></a></li>
|
[/#list]
|
</ul>
|
</td>
|
|
<tr><th >过程总结:</th><td>
|
${info.ORDER_NOTE}
|
</td></tr>
|
|
</table>
|
</form>
|
</div>
|
<script type="text/javascript">
|
function onDialogBtnClick(btnID, dialogID, config){
|
if(btnID == "btnSure"){
|
window.top.confirmInfo('提示', '确定要提交吗?', function(){
|
$("#myform").submit();
|
})
|
}
|
}
|
</script>
|
|
</body>
|
</html>
|