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
[#include "/component/propTemplateRead.html" /]
[#include "/component/DatePicker.html" /]
<div class="edit_title"><h3>基本信息</h3></div>
<table class="basicinfo2">
<tr>
    <th ><label >一级分类:</label></th>
        <td>${info.lv1_name}</td>
        <th><label >二级分类:</label></th>
        <td>${info.lv2_name}</td>
    </tr>
    <tr>
        <th ><label >三级分类:</label></th>
        <td colspan="3">${info.lv3_name}</td>
    </tr>
<tr>
    <th><label >配置名称:</label></th>
    <td>${info.ciname}</td>
    <th><label >SN序列号:</label></th>
    <td>${info.sn_no}</td>
</tr>
<tr>
    <th><label >负责科室:</label></th>
    <td>${info.zr_dept}</td>
    <th><label >负责人:</label></th>
    <td>${info.zr_name}</td>
</tr>
<tr>
    <th><label >厂商:</label></th>
    <td>${info.mft_name}</td>
    
    <th><label >集成商:</label></th>
    <td>${info.igt_name}</td>
</tr>
<tr>
    <th><label >位置:</label></th>
    <td colspan="3" class="longwidth">${info.position}</td>
</tr>
<tr>
    <th><label >购买时间:</label></th>
    <td>${DateUtil.format("yyyy-MM-dd",info.buy_time)}</td>
    <th><label >过保时间:</label></th>
    <td>${DateUtil.format("yyyy-MM-dd",info.gb_time)}</td>
</tr>
<tr>
    <th><label >续保时间:</label></th>
    <td>${DateUtil.format("yyyy-MM-dd",info.xb_time)}</td>
    <th><label >续保过保时间:</label></th>
    <td>${DateUtil.format("yyyy-MM-dd",info.xbgb_time)}</td>
</tr>
</table>    
[#if groupProps?? && groupProps?size>0]
    [#list groupProps as group]
        [#if group.props?? && group.props?size>0]
            [#if group.gid!="-1"]
            <div class="edit_title"><h3>${group.GROUP_NAME}</h3></div>
            [/#if]
            <table class="basicinfo2">
            [@prop source=group.props groupid=group.gid /]
            </table>
            [#if group.gid=="-1"]
            <table class="basicinfo2">
            <tr>
                <th><label >备注:</label></th>
                <td colspan="3" class="longwidth">${info.note}</td>
            </tr>
            </table>    
            [/#if]
        [/#if]
    [/#list]
[/#if]