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
<!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" /]
<nav class="fs_nav">
    <div class="fsnav_con">
        <h3>自定义属性</h3>
        <a class="focus"><span>自定义属性</span></a>
    </div>
</nav>
<div class="fs_navpath">
    <h3>当前位置</h3>
    <span></span>
    <a>配置管理</a>
    <span></span>
    <a>配置分类</a>
    <span></span>
    <em>自定义属性</em>
</div>
<div class="fs_main equip_add clearfix monitor_report" >
    <div class="ucmLeft" style="width:20%;">
        <div class="ntt_title">
            <span></span><a href="${base}/business/pages/cfgcate/propList.html?linkId=${RequestParameters.linkId}" target="myiframe">属性分组</a>
        </div>    
        <div class="three_tree">
        <ul class="thirdTree">
        [#if groups??&&groups?size>0]
        [#list groups as item]
            <li class="cur thirdTree" ><span class="last"></span><a href="${base}/business/pages/cfgcate/propList.html?groupId=${item.id}" target="myiframe">${item.group_name}</a></li>
        [/#list]
        [/#if]
        </ul>
        </div>
    </div>
    <div class="expert_base" style="width:75%;">
        <iframe frameborder="0" width="100%" name="myiframe" id="myiframe" height="600px" src="${base}/business/pages/cfgcate/propList.html?linkId=${RequestParameters.linkId}" target="myiframe"></iframe>
    </div>
</div>
 
<script type="text/javascript">
 
</script>
[#include "/business/pages/include/footer.html" /]
</body>
</html>