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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>驻场运维工单确认</title>
 
[#include "/business/pages/include/static.html" /]
 
</head>
<body class="end_task_body">
[#if incident?? && incident?size>0]
    <div class="end_task">
            <table>
                <tr><th>事件编号:</th><td>${incident.ORDER_CODE}</td></tr>
                <tr><th>事件状态:</th><td>${Constants.mapSC_WORKFLOW_INCIDENT_LOCAL_STATE_Label(incident.STATE+"")}</td></tr>
                <tr><th>${Constants.CUSTOMER_CONSTANTS}名称:</th><td><span class="blue_txt">${incident.CUSTOMER_NAME}</span></td></tr>
                <tr><th>SLA:</th><td class="scores_con">
                    <!--<a class="scores_star focus"></a>
                    <a class="scores_star focus"></a>
                    <a class="scores_star"></a>
                    <a class="scores_star"></a>
                    <a class="scores_star"></a>
                    --><h4>${incident.SLA_NAME}</h4>
                    <p>(<span>响应时间:</span><em class="first">${incident.REQUEST_ANSWER_TIME}分钟</em><span>解决时间:</span><em>${incident.REQUEST_DEAL_TIME}小时</em>)</p>
                        
                </td></tr>
            </table>
    </div>
    
    <script type="text/javascript">
    function onDialogBtnClick(btnID, dialogID, config){
        if(btnID == "btnSure_"+dialogID){
            var b = false;
            if(!b) {
                $.post("${base}/business/pages/zcyw/doConfirm.html",{"incidentId":'${incident.ID}',"flowId":'${incident.FLOW_ID}'},function(data,textStatus) {
                    b = true;
                    window.top.popupTips("确认成功");
                    window.top.hideDialog(dialogID);
                    window.top.location.reload(true);
                    b = false;
                })
            } else {
                window.top.popupTips("正在确认...");
            }
        }
    }
    </script>
[/#if]
 
</body>
</html>