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
49
[#if info.datas?? && info.datas?size>0]
    [#list info.datas as order]
        <div class="order_list">
        <div class="ol_title">
            <h3>工单编号:${order.ORDER_CODE}</h3>
            <a href="${base}/uc/uchealth/uchealthDetail.html?orderId=${order.ORDERID}&flowId=${order.FLOWID}&nodeId=${order.NODEID}"><img src="${common_static}/static/ui/images/zc-icon-37.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",order.CREATETIME)}</span>
                        <em>创建人名称:</em>
                        <span class="olc_txt">${order.CREATERNAME}</span>
                        <em>${Constants.UNIT_CONSTANTS}:</em>
                        <span class="olc_txt yellow_txt last">${order.SUB_CUSTOMER_NAME}</span>
                    </td>
                </tr>
                <tr><td><em>事项:</em>${order.WFNAME}</td></tr>
                <tr>
                    <td>
                    <em>配置运行情况说明:</em>
                    [#if order.CI_RUN_NOTE??&&order.CI_RUN_NOTE?length>35]
                        ${order.CI_RUN_NOTE?substring(0,35)}...
                    [#else]
                        ${order.CI_RUN_NOTE}
                    [/#if]
                    </td>
                </tr>
            </table>
        </div>
    </div>
    [/#list]
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]