57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
|
|
</head>
|
|
<body>
|
|
<div class="timo-detail-page">
|
|
<div class="timo-detail-title">基本信息</div>
|
|
<table class="layui-table timo-detail-table">
|
|
<colgroup>
|
|
<col width="100px"><col>
|
|
<col width="100px"><col>
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<th>主键ID</th>
|
|
<td th:text="${platform.id}"></td>
|
|
<th>名称</th>
|
|
<td th:text="${platform.name}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>联系人</th>
|
|
<td th:text="${platform.contact}"></td>
|
|
<th>联系人电话</th>
|
|
<td th:text="${platform.contactTel}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>联系人身份证号码</th>
|
|
<td th:text="${platform.contactCard}"></td>
|
|
<th>邮箱</th>
|
|
<td th:text="${platform.email}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>类型</th>
|
|
<td th:text="${platform.type}" colspan="3"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>创建者</th>
|
|
<td th:text="${platform.createBy?.nickname}"></td>
|
|
<th>更新者</th>
|
|
<td th:text="${platform.updateBy?.nickname}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>创建时间</th>
|
|
<td th:text="${#dates.format(platform.createDate, 'yyyy-MM-dd HH:mm:ss')}"></td>
|
|
<th>更新时间</th>
|
|
<td th:text="${#dates.format(platform.updateDate, 'yyyy-MM-dd HH:mm:ss')}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>备注</th>
|
|
<td th:text="${platform.remark}" colspan="3"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script th:replace="/common/template :: script"></script>
|
|
</body>
|
|
</html> |