kdayun-template/modules/kdayun-app/src/main/resources/view/manager/home/version.ftl

57 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-02-19 20:28:01 +08:00
<!DOCTYPE html>
<html>
<head>
<title>版本信息</title>
<#include "base/pageheader.ftl" />
<style>
.view {
height: 100%;
background-color: white;
}
</style>
</head>
<body>
<div class="view">
<table class="layui-table">
<colgroup>
<col style="width:100px">
<col>
</colgroup>
<tbody>
<tr>
<td>当前版本</td>
<td>${version.VER_BANB}
</td>
</tr>
<tr>
<td>更新时间</td>
<td>${version.VER_GENGXSJ?string('yyyy-MM-dd HH:mm:ss')}
</td>
</tr>
<tr>
<td>所属系统</td>
<td>${version.VER_SUOSXT}
</td>
</tr>
<tr>
<td>更新日志</td>
<td><a rel="noopener noreferrer" target='_blank'
href="http://platform.kdayun.com.cn:15689/html/download.html">查看</a>
</td>
</tr>
<tr>
<td>更新内容</td>
<td>${version.VER_MIAOS}
</td>
</tr>
</tbody>
</table>
</div>
<#include "base/pagefoot.ftl" />
</body>
</html>