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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>问题基本信息</title>
</head>
 
<body>
[#include "/business/pages/include/static.html" /]
 
<div class="deal_switch_con" style="display:block;">
    <div class="deal_record_tittle"></div>
       <div class="edit_title"><h3>基本信息</h3></div>
                    <table class="edit_layout basicinfo" width="100%">
                        <tr>
                            <th><label>问题名称:</label></th>
                            <td colspan="3"><span class="infotxt">${baseMsg.NAME}</span></td>
                            
                        </tr>
                        <tr>
                            <th ><label>问题描述:</label></th>
                            <td colspan="3"><span class="infotxt">${StringUtil.str2Html(baseMsg.DESCRIP)}</span></td>
                        </tr>
                        <tr>
                            <th><label>${Constants.CUSTOMER_CONSTANTS}名称:</label></th>
                            <td><span class="infotxt">${baseMsg.CUSTOMER_NAME}</span></td>
                            <th><label>${Constants.UNIT_CONSTANTS}:</label></th>
                            <td><span class="infotxt">${baseMsg.SUB_CUSTOMER_NAME}</span></td>
                        </tr>
                         <tr>
                            <th><label>联系人:</label></th>
                            <td><span class="infotxt">${baseMsg.CONTACT_NAME}</span></td>
                            <th><label>联系方式:</label></th>
                            <td><span class="infotxt">${baseMsg.CONTACT_PHONE}</span></td>
                        </tr>
                        <tr>
                            <th><label>业务科室:</label></th>
                            <td><span class="infotxt">${baseMsg.KESHI}</span></td>
                            <th><label>问题来源:</label></th>
                            <td><span class="infotxt">${baseMsg.SOURCE_NAME}</span></td>
                        </tr>
                         <tr>
                            <th><label>服务目录:</label></th>
                            <td colspan="3"><span class="infotxt">${baseMsg.FIRST_CATEGORY_NAME}->${baseMsg.SECOND_CATEGORY_NAME}->${baseMsg.THIRD_CATEGORY_NAME}</span></td>
                        </tr>
                        <tr>
                            <th><label>紧急程度:</label></th>
                            <td><span class="infotxt">${baseMsg.PRIORITY_NAME}</span></td>
                            <th><label>影响范围:</label></th>
                            <td><span class="infotxt">${baseMsg.INFLUENCE_NAME}</span></td>
                        </tr>
                        <tr>
                            <th><label>优先等级:</label></th>
                            <td><span class="infotxt">${baseMsg.PRI_LEVEL}</span></td>
                            <th style="width:100px;" ><label>期望解决时间:</label></th>
                            <td><span class="infotxt">${DateUtil.format("yyyy-MM-dd",baseMsg.WANT_DEAL_TIME)}</span></td>
                        </tr>
                        <tr>
                            <th><label>创建人:</label></th>
                            <td><span class="infotxt">${baseMsg.CREATE_USER_NAME}</span></td>
                            <th><label>创建时间:</label></th>
                            <td><span class="infotxt">${DateUtil.format("yyyy-MM-dd HH:mm:ss",baseMsg.CREATE_TIME)}</span></td>
                        </tr>
                        
                        [#if baseMsg.files?? && baseMsg.files?size>0]
                            <tr>
                                <th class="postop"><label>附件:</label></th>
                                <td colspan="3">
                                    <ul class="file_list">
                                        [#list baseMsg.files as file]
                                            <li><a href="${base}/business/pages/file/downloadFile.html?fileId=${file.ID}"><span>${file.FILE_NAME}</span></a></li>
                                        [/#list]
                                    </ul>
                                </td>
                            </tr>
                        [/#if]
                    </table>
</div>
 
</body>
</html>