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
[#if info?? && info.datas?? && info.datas?size>0]
    <table class="display_form common_list_table">
       <tr class="title">
            <td width="5%">序号</td>
            <td width="20%">工单名称</td>
            <td width="15%">工单编号</td>
            <td width="15%">创建时间</td>
            <td width="10%">操作</td>
       </tr>
       [#list info.datas as customer]
       <tr>
           <td>${info.rowNum+customer_index+1}</td>
           <td>${customer.NAME}</td>
            <td>${customer.ORDER_CODE}</td>
            <td>${DateUtil.format("yyyy-MM-dd HH:mm:ss",customer.CREATETIME)}</td>
           <td class="list_btnmore_wrap">
                   <a class="blue_txt" href="${base}/business/pages/order/orderInfo.html?orderId=${customer.BUSINESS_ID}&flowId=${customer.bid}&orderType=${customer.BUSINESSTYPE}" target="_blank"><span>详情</span></a>
          </td>
       </tr>
       [/#list]  
    </table>
[#else]
    <div class="loadpos"><span class="nodata"></span></div>
[/#if]