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
50
<style>
    /*一键派单*/
    .order_list .ol_con span.assign{
        background:url(/static/ui/images/assign.png) #f97b40 10px center no-repeat;
        padding:10px 10px;
        padding-left:30px;
        color:#fff;
        border-radius:2px;
        position:absolute;
        right:15px;
        top:25px;
    }
</style>
[#if orders?? && orders.datas?? && orders.datas?size>0]
    [#list orders.datas as order]
        <div class="order_list">
        <div class="ol_title">
            <h3>创建时间:${DateUtil.format("yyyy-MM-dd HH:mm:ss",order.CREATE_TIME)}</h3>
            <h3>创建人:${order.CREATE_USER_NAME}</h3>
            <a href="javascript:delTemp('${order.ID}')"><img src="${common_static}/static/ui/images/zc-icon-ch.png" alt="" /></a>
            <a href="${base}/business/pages/incidentTemplate/templateDetail.html?orderId=${order.ID}"><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>
            <a href="${base}/business/pages/incidentTemplate/engineerEditIncident.html?orderId=${order.ID}"><img src="${common_static}/static/ui/images/zc-icon-38.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>${Constants.mapWORKFLOW_BUSINESS_TYPE_Label(order.BUSINESSTYPE+"")}</span>
                        </a>
                    </th>
                    <td>
                        <em>模板名称:</em>
                        <span class=" yellow_txt ">${order.TEMPLATE_NAME}</span>
                    </td>
                </tr>
                <tr><td><em>事件名称:</em>${order.NAME}</td></tr>
                <tr><td><em>事件描述:</em>${left(order.DESCRIP,150)}</td></tr>
            </table>
            <a href="${base}/business/pages/incident/engineerAddIncident.html?orderId=${order.ID}&type=4"><span class="assign">一键派单</span></a>
        </div>
    </div>
    [/#list]
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]