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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
[#include "/business/wechat/ewyw/ewconfig/wpropTemplate.html" /]
</head>
 
<body class="kltypebg">
<header class="kltit">
<!-- <a href="#"><label></label></a> -->
<a href="javascript:history.go(-1);"><span></span></a>配置详情</header>
<section class="mb5">
    <a><h2 class="redtit">基本信息</h2></a>
    <section class="wlresponse wldetailtwo cwrap">
        <p>
            <span>搜索码</span>
            <label>${info.SEARCHCODE}</label>
        </p>
        <p>
            <span>配置名称</span>
            <label>${info.CINAME}</label>
        </p>
        <p>
            <span>负责人</span>
            <label>${info.ZR_NAME}</label>
        </p>
        <p>
            <span>创建时间</span>
            <label>${DateUtil.format("yyyy-MM-dd HH:mm:ss",info.CREATE_TIME)}</label>
        </p>
        <p>
            <span>厂商</span>
            <label>${info.MFT_NAME}</label>
        </p>
        <p>
            <span>集成商</span>
            <label>${info.IGT_NAME}</label>
        </p>
        <p>
            <span>位置</span>
            <label>${info.POSITION}</label>
        </p>
        <p>
            <span>最后更新时间</span>
            <label>${DateUtil.format("yyyy-MM-dd HH:mm:ss",info.LAST_UP_TIME)}</label>
        </p>
        <p>
            <span>购买时间</span>
            <label>${DateUtil.format("yyyy-MM-dd",info.BUY_TIME)}</label>
        </p>
        <p>
            <span>过保时间</span>
            <label>${DateUtil.format("yyyy-MM-dd",info.GB_TIME)}</label>
        </p>
        <p>
            <span>续保时间</span>
            <label>${DateUtil.format("yyyy-MM-dd",info.XB_TIME)}</label>
        </p>
        <p>
            <span>续保过保时间</span>
            <label>${DateUtil.format("yyyy-MM-dd",info.XBGB_TIME)}</label>
        </p>
        
        [#if groupProps?? && groupProps?size>0]
            [#list groupProps as group]
            [#if group.gid=="-1"]
                [@wprop source=group/]
            [/#if]
            [/#list]
        [/#if]
        <p>
            <span>备注</span>
            <label>${StringUtil.str2Html(info.NOTE)}</label>
        </p>     
    </section> 
</section> 
<section class="mb5">
    <a><h2 class="redtit">扩展信息</h2></a>
    <section class="taskdetail2 clearfix">
        [#if groupProps?? && groupProps?size>0]
            [#list groupProps as group]
                    [#if group.props?? && group.props?size>0]
                    [#if group.gid!="-1"]
                    <a href="${base}/uwyw/uconfig/morePropMsg.html?index=${group_index}&id=${RequestParameters.id}" class="type1">${group.GROUP_NAME}</a>
                    [/#if]
                    [/#if]
            [/#list]
        [/#if]
    </section> 
</section>
<section class="mb5">
    <a><h2 class="redtit">预防性维护</h2></a>
    <section class="taskdetail2 clearfix">
        <a href="${base}/uwyw/uconfig/uDeviceLinkDaily.html?id=${RequestParameters.id}" class="type2">日常巡检</a>
        <a href="${base}/uwyw/uconfig/uDeviceLinkRemind.html?id=${RequestParameters.id}" class="type2">例行维护</a>
        <a href="${base}/uwyw/uconfig/uDeviceLinkHealth.html?id=${RequestParameters.id}" class="type2">健康检查</a>
    </section> 
</section>
<section class="mb5">
    <a><h2 class="redtit">关联信息</h2></a>
    <section class="taskdetail2 clearfix">
        <a href="${base}/uwyw/uconfig/uCiLinkOrder.html?id=${RequestParameters.id}" class="type3">关联工单</a>
        <a href="${base}/uwyw/uconfig/uCiLinkknow.html?id=${RequestParameters.id}" class="type3">关联知识</a>
        <a href="${base}/uwyw/uconfig/uCiLinkFile.html?id=${RequestParameters.id}" class="type3">关联文档</a>
    </section> 
</section> 
</body>
</html>