cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>详情</title>
 
[#include "/business/pages/include/static.html" /]
</head>
 
<body class="end_task_body widthauto" >
    
    <table class="basicinfo2">
        <tr>
            <th>版本号:</th>
            <td>${info.VERSION_CODE}</td>
        </tr>
        <tr>
            <th >发布时间:</th>
            <td>${format(info.CREATE_TIME,'yyyy年MM月dd日')}</td>
        </tr>
        <tr>
            <th>发布人姓名:</th>
            <td>${info.USER_NAME}</td>
        </tr>
        <tr>
            <th >是否更新html5:</th>
              <td >[#if info.IS_UPDATE_HTML == 0]否[#else]是[/#if]</td>
        </tr>
        <tr>
            <th >是否强制更新:</th>
              <td >[#if info.IS_FORCE_UPDATE == 1]否[#else]是[/#if]</td>
        </tr>
        <tr>
            <th>更新描述:</th>
              <td>${info.CONTENT}</td>
        </tr>
    </table>
 
 
</body>
</html>