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
[#if orderList?? && orderList.datas?? && orderList.datas?size>0]
    [#list orderList.datas as order]
        <div class="order_list">
                <div class="ol_title">
                    <h3>工单编号:${order.ORDER_CODE}</h3>
                    <!-- [#if order.WFSTATE == Constants.WORKFLOW_BASE_WFSTATE_DOING]
                    <a href="${base}/business/pages/question/questionDeal.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}"><img src="${common_static}/static/ui/images/zc-icon-38.gif" alt="" /></a>
                    [/#if] -->
                    <a href="${base}/business/pages/order/orderInfo.html?orderId=${order.BUSINESS_ID}&flowId=${order.ID}&orderType=${order.BUSINESSTYPE}" target="_blank"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
                    
                    <!--<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>问题</span></a>
                            </th>
                            <td>
                                <em>${Constants.CUSTOMER_CONSTANTS}名称:</em>
                                <span class="olc_txt yellow_txt ">${order.CUSTOMER_NAME}</span>
                                <em>${Constants.UNIT_CONSTANTS}名称:</em>
                                <span class="olc_txt ">[#if order.SUB_CUSTOMER_NAME??&&order.SUB_CUSTOMER_NAME != null ]${order.SUB_CUSTOMER_NAME}[#else]-[/#if]</span>
                                <em>当前节点:</em>
                                <span class="olc_txt last">${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.NAME}</td></tr>
                        <tr><td><em>内容概述:</em> ${left(order.WFNOTE,150)}</td></tr>
                    </table>
                </div>
            </div>
    [/#list]
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]