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
51
52
53
54
55
56
57
58
59
<!doctype html>
<html class="no-js">
<head>
    <meta charset="utf-8">
    <title>交付管理详情</title>
 
</head>
 
<body>
[#include "/business/pages/include/static.html" /]
[#include "/component/select.html" /]
[#include "/component/newsel.html" /]
[#include "/component/DatePicker.html" /]
[#include "/business/pages/include/print.html" /]
 [#include "/component/excExport.html" /]
<div class=" clearfix">
    <div class="nopadding" id="fsmCenter">
        <div class="deal_switch_wrap">
            <div class="deal_switch_con iframecon" style="display:block;">
                <table class="basicinfo2" width="100%">
                    <tr>
                        <th><label>客户电话:</label></th>
                        <td colspan="3"><span class="infotxt">${info.CUSTOMER_MOBILE}</span></td>
                    </tr>
                    <tr>
                        <th><label>通话开始时间:</label></th>
                        <td><span class="infotxt">${DateUtil.format("yyyy-MM-dd",info.START_TIME)}</span></td>
                    </tr>
                    <tr>
                        <th><label>通话结束时间:</label></th>
                        <td><span class="infotxt">${DateUtil.format("yyyy-MM-dd",info.END_TIME)}</span></td>
                    </tr>
                    <tr>
                        <th><label>通话时长:</label></th>
                        <td><span class="infotxt">${DateUtil.format(" HH:mm:ss",info.LONG_TIME)}</span></td>
                    </tr>
                    <tr>
                        <th><label>通话状态:</label></th>
                        <td colspan="3"><span class="infotxt">
                            [#if info.TRA_STATE==0]
                                        未通话
                                    [#else]
                                        通话
                                    [/#if]
                        </span></td>
                    </tr>
                    <tr>
                        <th><label>处理人:</label></th>
                        <td colspan="3"><span class="infotxt">${info.USER_NAME}</span></td>
                    </tr>
                </table>
            </div>
 
            <!-- 执行 -->
        </div>
    </div>
</div>
</body>
</html>