<!doctype html>
|
<html>
|
<head>
|
[#include "/business/wechat/include/title.html" /]
|
[#include "/business/wechat/include/wheader.html" /]
|
</head>
|
|
<body>
|
<header class="kltit"><a href="javascript:history.go(-1);"><span></span></a>${record.NODENAME}(<p [#if record.FLOWSTATE == Constants.WORKFLOW_NODE_FLOWSTATE_UNDISPOSE]class="blue"[#elseif record.FLOWSTATE == Constants.WORKFLOW_NODE_FLOWSTATE_DOING]class="green"[#else]class="gray"[/#if]>${Constants.getWORKFLOW_NODE_FLOWSTATE_Label(record.FLOWSTATE)}</p>)</header>
|
<section class="wlresponse wldetailtwo">
|
[#if record.CURRENT_DEALER_NAME?? && record.CURRENT_DEALER_NAME !=""]
|
<p>
|
<span>处理人</span>
|
<label>${record.CURRENT_DEALER_NAME}</label>
|
</p>
|
[#else]
|
<p>
|
<span>处理组</span>
|
<label>${record.CURRENT_DEAL_ROLENAME}(${record.users})</label>
|
</p>
|
[/#if]
|
<p>
|
<span>时间</span>
|
<label>${DateUtil.format("yyyy年MM月dd日 HH:mm:ss",record.CREATETIME)}</label>
|
</p>
|
<p>
|
<span>响应时间</span>
|
<label>[#if record.ANSWER_USERTIME?? && record.ANSWER_USERTIME!=""]${record.ANSWER_USERTIME}[#else]- - -[/#if]</label>
|
</p>
|
<p>
|
<span>解决时间</span>
|
<label>[#if record.DEAL_USETIME?? && record.DEAL_USETIME !=0 && record.DEAL_USETIME!=""]${record.DEAL_USETIME}[#else]- - -[/#if]</label>
|
</p>
|
<p>
|
<span>总结</span>
|
<label class="sum">${StringUtil.str2Html(record.DEAL_NOTE)}</label>
|
</p>
|
</section>
|
</body>
|
</html>
|