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
<!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]-&nbsp;-&nbsp;-[/#if]</label>
    </p>
    <p>
        <span>解决时间</span>
        <label>[#if record.DEAL_USETIME?? && record.DEAL_USETIME !=0 && record.DEAL_USETIME!=""]${record.DEAL_USETIME}[#else]-&nbsp;-&nbsp;-[/#if]</label>
    </p>
    <p>
        <span>总结</span>
        <label class="sum">${StringUtil.str2Html(record.DEAL_NOTE)}</label>
    </p>
</section>
</body>
</html>