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
<div class="flow_wrap">
[#if lzs?? && lzs?size>0]
[#list lzs as lz]
           <section class="wldetail">
                    <h2>${lz.node_template_name}</h2>
                    [#if lz.rds?? && lz.rds?size>0]
                        [#list lz.rds as rd]
                            <p onclick="javascript:window.location.href='${base}/uwyw/uIncident/uLcMore.html?id=${rd.ID}'">
                                <label></label>
                                [#if rd.CURRENT_DEALER_NAME?? && rd.CURRENT_DEALER_NAME !=""]
                                    [#if rd.IS_ADMIN==1]主负责人[#else]处理人[/#if]:${rd.CURRENT_DEALER_NAME}
                                    (<span [#if rd.FLOWSTATE == Constants.WORKFLOW_NODE_FLOWSTATE_UNDISPOSE]class="blue"[#elseif rd.FLOWSTATE == Constants.WORKFLOW_NODE_FLOWSTATE_DOING]class="green"[#else]class="gray"[/#if]>${Constants.getWORKFLOW_NODE_FLOWSTATE_Label(rd.FLOWSTATE)}</span>)
                                [#else]
                                    处理组:${rd.CURRENT_DEAL_ROLENAME}
                                    (<span [#if rd.FLOWSTATE == Constants.WORKFLOW_NODE_FLOWSTATE_UNDISPOSE]class="blue"[#elseif rd.FLOWSTATE == Constants.WORKFLOW_NODE_FLOWSTATE_DOING]class="green"[#else]class="gray"[/#if]>${Constants.getWORKFLOW_NODE_FLOWSTATE_Label(rd.FLOWSTATE)}:${rd.users}</span>)
                                [/#if]
                                <em>${DateUtil.format("yyyy年MM月dd日 HH:mm:ss",rd.CREATETIME)}</em>
                            </p>
                        [/#list]
                    [/#if]
                    <p></p>
                </section>
       [/#list]
       [/#if]
        </div>