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
<!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">
<div class="present"><a href="${base}/wechat/facBx.html?id=${info.id}">报修</a></div>配置详情</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>
        <p>
            <span>备注</span>
            <label>${StringUtil.str2Html(info.NOTE)}</label>
        </p>     
    </section> 
</section> 
</body>
</html>