cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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>