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
[#if orders?? && orders.datas?? && orders.datas?size>0]
    [#list orders.datas as order]
        <div class="order_list">
        <div class="ol_title">
            <h3>工单编号:${order.ORDER_CODE}</h3>
            <a href="${base}/business/pages/zcyw/zcywDetail.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" title="驻场运维详情"  ><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
 
            [#if order.FLOWSTATE != Constants.WORKFLOW_NODE_FLOWSTATE_FINISH]
            <a href="${base}/business/pages/zcyw/zcywDeal.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}" target="_blank" ><img src="${common_static}/static/ui/images/zc-icon-38.gif" alt="" /></a>
            [/#if]
            [#if order.WFSTATE == Constants.WORKFLOW_BASE_WFSTATE_UP]
            <a href="${base}/business/pages/incident/incidentDetail.html?orderId=${order.INCIDENT_ID}" title="事件详情"  ><img src="${common_static}/static/ui/images/zc-icon-37-2.gif" alt="" /></a>
            [/#if]
            <!-- <a><img src="${common_static}/static/ui/images/zc-icon-50.gif" alt="" /></a>
            <a><img src="${common_static}/static/ui/images/zc-icon-49.gif" alt="" /></a>
            <a><img src="${common_static}/static/ui/images/zc-icon-48.gif" alt="" /></a> -->
        </div>
        <div class="ol_con">
            <table>
                <tr>
                    <th rowspan="3">
                        <a>
                            <img src="${common_static}/static/ui/images/fixStart.gif" alt="" />
                            <span>${Constants.mapWORKFLOW_BUSINESS_TYPE_Label(order.BUSINESSTYPE+"")}</span>
                        </a>
                    </th>
                    <td>
                        <em>${Constants.CUSTOMER_CONSTANTS}名称:</em>
                        <span class="olc_txt yellow_txt ">${order.CUSTOMER_NAME}</span>
                        <em>当前节点:</em>
                        <span class="olc_txt">${order.CURRENT_NODE_NAME}</span>
                        <em>工单状态:</em>
                        <span class="olc_txt">${Constants.getWORKFLOW_BASE_WFSTATE_Label(order.WFSTATE)}</span>
                        <em>创建时间:</em>
                        <span class="olc_txt">${DateUtil.format("yyyy-MM-dd HH:mm:ss",order.CREATETIME)}</span>
                        <em>创建人名称:</em>
                        <span class="olc_txt last">${order.CREATERNAME}</span>
                    </td>
                </tr>
                <tr><td><em>事项:</em>${order.WFNAME}</td></tr>
                <tr><td><em>内容概述:</em>${order.WFNOTE}</td></tr>
            </table>
        </div>
    </div>
    [/#list]
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]