cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>配置详情</title>
[#include "/business/pages/include/static.html" /]
</head>
<body class="end_task_body widthauto">
    <div class="edit_title"><h3>基本信息</h3></div>
    <table class="basicinfo2">
    <tr>
        <th><label >报修人:</label></th>
        <td>${info.create_name}</td>
        <th><label >${Constants.CUSTOMER_CONSTANTS}名称:</label></th>
        <td>${info.cus_name}</td>
    </tr>
    <tr>
        <th><label >联系方式:</label></th>
        <td>${info.lx_phone}</td>
    </tr>
    <tr>
        <th><label >报修时间:</label></th>
        <td>${DateUtil.format("yyyy-MM-dd HH:mm",info.create_time)}</td>
        <th><label >状态:</label></th>
        <td>${Constants.getREPAIR_STATE(info.status)}</td>
    </tr>
    <tr>
        <th><label >处理人:</label></th>
        <td colspan="3" class="longwidth">${info.deal_name}</td>
    </tr>
    <tr>
        <th><label >报修标题:</label></th>
        <td colspan="3" class="longwidth">${info.bx_title}</td>
    </tr>
    <tr>
        <th><label >报修内容:</label></th>
        <td colspan="3" class="longwidth">${info.bx_content}</td>
    </tr>
    </table> 
</body>
</html>