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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>配置详情</title>
[#include "/business/pages/include/static.html" /]
</head>
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
[#assign focusLabel = "BASE"]
[#include "/business/pages/cfg/cfgheader.html" /]
[#include "/component/propTemplateRead.html" /]
<script type="text/javascript">
function printCode(ciId) {
    window.top.openDialog("0","打印",
                         {},
                         {"width":"30","height":"50"},
                         [{btnId:"print", btnName:"打印", btnStyle:"bluebtn"}],
                         "${base}/business/pages/cfg/printCode.html?ciId="+ciId);    
}
</script>
 
<div class="fs_navpath">
    <h3>当前位置</h3>
    <span></span>
    <a>配置详情</a>
    <span></span>
    <em>基本信息</em>
</div>
 
<div class="fs_main equip_add clearfix" >
    <div class="ucmLeft monitor_report" id="equipAddLeft" page="detail_info" noscroll="true">
        [#include "/business/pages/cfg/cfgLeft.html" /]
    </div>
    <div class="equip_add_right equipdetail_basic monitor_report" id="equipAddRight">
        <div class="deal_switch">
            <h3>基本信息扩展</h3>
        </div>
        <div class="deal_con">
            <table class="basicinfo2">
                [#if groupProps?? && groupProps?size>0]
                    [#list groupProps as group]
                        [#if group.props?? && group.props?size>0]
                            <div class="edit_title"><h3>${group.GROUP_NAME}</h3></div>
                            <table class="basicinfo2">
                            [@prop source=group.props groupid=group.gid /]
                            </table>
                        [/#if]
                    [/#list]
                [/#if]
            </table>
        </div>
    </div>
</div>
[#include "/business/pages/include/footer.html" /]
</body>
</html>