cwhelp/admin/src/main/resources/templates/business/classItem/detail.html

39 lines
1.4 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="${classItem.id}"></td>
<th>科目名称</th>
<td th:text="${classItem.itemName}"></td>
</tr>
<tr>
<th>科目类型</th>
<td th:text="${classItem.itemType}"></td>
<th>创建者</th>
<td th:text="${classItem.createBy?.nickname}"></td>
</tr>
<tr>
<th>创建时间</th>
<td th:text="${#dates.format(classItem.createDate, 'yyyy-MM-dd HH:mm:ss')}" colspan="3"></td>
</tr>
<tr>
<th>备注</th>
<td th:text="${classItem.remark}" colspan="3"></td>
</tr>
</tbody>
</table>
</div>
<script th:replace="/common/template :: script"></script>
</body>
</html>