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
110
111
112
113
114
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
[#include "/business/wechat/ewyw/ewconfig/wpropTemplate.html" /]
<script type="text/javascript">
var selectIndex = ${RequestParameters.index};
function query(index) {
}
</script>
<script type="text/javascript" src="${common_static}/static/wechat/style/js/myswiper.js"></script>
</head>
 
<body>
[#assign n=RequestParameters.index]
<header class="kltit">
    <a href="javascript:history.go(-1);"><span></span></a>配置属性详情
</header>
<nav class="kltwo clearfix">
    <div class="kltwowrap">
        <a href="#" hidefocus="true" class="active">基本信息</a>
        [#if groupProps?? && groupProps?size>0]
            [#list groupProps as group]
                [#if group.props?? && group.props?size>0]
                [#if group.gid!="-1"]
                <a href="#" hidefocus="true">${group.GROUP_NAME}</a>
                [/#if]
                [/#if]
            [/#list]
        [/#if]
    </div>
</nav>
<div class="swiper-container" id="swiper-pages">
    <div class="swiper-wrapper">
        <div class="swiper-slide">
            <section class="wlresponse wldetailtwo">
            <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>
        </div>
        [#if groupProps?? && groupProps?size>0]
            [#list groupProps as group]
                [#if group.gid!="-1"]
                <div class="swiper-slide">
                    <section class="wlresponse wldetailtwo">
                    [@wprop source=group/]
                    </section>
                </div>    
                [/#if]
            [/#list]
        [/#if]
    </div>
</div>
</body>
</html>