<!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>
|