47 lines
1.7 KiB
HTML
47 lines
1.7 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="${dept.id}"></td>
|
|
<th>名称</th>
|
|
<td th:text="${dept.name}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>描述</th>
|
|
<td th:text="${dept.description}"></td>
|
|
<th>所属</th>
|
|
<td th:text="${dept.bssPlatform.name}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>创建者</th>
|
|
<td th:text="${dept.createBy?.nickname}"></td>
|
|
<th>更新者</th>
|
|
<td th:text="${dept.updateBy?.nickname}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>创建时间</th>
|
|
<td th:text="${#dates.format(dept.createDate, 'yyyy-MM-dd HH:mm:ss')}"></td>
|
|
<th>更新时间</th>
|
|
<td th:text="${#dates.format(dept.updateDate, 'yyyy-MM-dd HH:mm:ss')}"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>备注</th>
|
|
<td th:text="${dept.remark}" colspan="3"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script th:replace="/common/template :: script"></script>
|
|
</body>
|
|
</html> |