89 lines
2.3 KiB
HTML
89 lines
2.3 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8"/>
|
||
|
|
<title th:text="${ticket.title}"></title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
font-size: 12px;
|
||
|
|
font-family: simsun, Arial, sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.style1 {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
table, th, td {
|
||
|
|
border: black 1px solid;
|
||
|
|
border-collapse: collapse;
|
||
|
|
padding: 5px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h2 class="style1"><img alt="" src="https://cabinet-tool.oss-cn-hangzhou.aliyuncs.com/admin/20250207/1/mmwf/logo.png"/>移动破售后问题反馈表
|
||
|
|
</h2>
|
||
|
|
<table style="width: 100%;">
|
||
|
|
<tr>
|
||
|
|
<td class="style1">标题</td>
|
||
|
|
<td colspan="3" th:text="${ticket.title}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>问题详细描述</td>
|
||
|
|
<td colspan="3" th:text="${ticket.description}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>工单编号</td>
|
||
|
|
<td th:text="${ticket.no}"></td>
|
||
|
|
<td>设备编号</td>
|
||
|
|
<td th:text="${ticket.deviceNo}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>机型</td>
|
||
|
|
<td th:text="${ticket.modelNo}"></td>
|
||
|
|
<td>使用时长</td>
|
||
|
|
<td th:text="${ticket.useTime}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>问题部位</td>
|
||
|
|
<td colspan="3" th:text="${ticket.component}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>紧急程度</td>
|
||
|
|
<td th:text="${ticket.urgencyDesc}"></td>
|
||
|
|
<td>解决状态</td>
|
||
|
|
<td th:text="${ticket.stateDesc}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>处理人</td>
|
||
|
|
<td th:text="${ticket.handleUserName}"></td>
|
||
|
|
<td>解决时间</td>
|
||
|
|
<td th:text="${ticket.updateTime}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>解决方案</td>
|
||
|
|
<td colspan="3" th:text="${ticket.solution}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td>提交人</td>
|
||
|
|
<td th:text="${ticket.createUserName}"></td>
|
||
|
|
<td>提交时间</td>
|
||
|
|
<td th:text="${ticket.createTime}"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td colspan="4">文件</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td colspan="4"><a th:each="url:${ticket.files}" th:href="${url}"></a></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td colspan="4">图片</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td colspan="4"><img alt="" th:each="url:${ticket.images}" th:src="${url}"/></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</body>
|
||
|
|
</html>
|