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
[#if info?? && info.datas?? && info.datas?size>0]
    [#list info.datas as order]
    <div class="order_list">
       <div class="ol_title" style="padding:0 10px;">
         <h3 class="time">${DateUtil.format("yyyy-MM-dd HH:mm:ss",order.CREATE_TIME)}</h3>
         <a href="javascript:details('${order.ID}');" ><img src="${common_static}/static/ui/images/zc-icon-37.gif" alt="" /></a>  </div>
       <div class="ol_con clearfix">
         <table style="width:100%;">
           <tr>
           <th rowspan="3" [#if order.TRA_STATE==0]class="call_no"[#else]class="call"[/#if]></th>
             <td><em>通话时长:</em>${DateUtil.format(" HH:mm:ss",order.LONG_TIME)}</td>
             <th rowspan="3"><span class="Orange">
             [#if order.TRA_STATE==0]
                            未通话
                        [#else]
                            通话
                        [/#if]</span></th>
           </tr>
           <tr>
             <td><em>处理人:</em>${order.USER_NAME}</td>
           </tr>
         </table>
       </div>
     </div>
    [/#list]
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]