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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>配置详情</title>
[#include "/business/pages/include/static.html" /]
 
[#include "/business/pages/cmdb/propform/vprop.html" /]
</head>
 
<body class="fullscreen">
[#include "/business/pages/include/header.html" /]
[#assign focusLabel = "MSG"]
[#include "/business/pages/servicelist/dsl/dsldetailheader.html" /]
<div class="fs_navpath mb15">
    <h3>当前位置</h3>
    <span></span>
    <a>DSL详情</a>
    <span></span>
    <em>基本信息</em>
</div>
 
[#if dslMap?? && dslMap?size>0]
 
<div class="fs_main equip_add clearfix mb15" >
    <div class="ucmLeft" id="equipAddLeft" page="detail_info" noscroll="true">
        <table class="attchment_file">
            <tr><td width="40%"><em>DSL名称:</em></td><td>${dslMap.DSL_NAME}</td></tr>
            <tr><td><em>搜索码:</em></td><td class="blue_txt">${dslMap.DSL_SEARCHCODE}</td></tr>
            <tr><td><em>DSL分类:</em></td><td>${dslMap.DSL_FIRST_CATEGORY_NAME}->${dslMap.DSL_SECOND_CATEGORY_NAME}->${dslMap.DSL_THIRD_CATEGORY_NAME}</td></tr>
            <tr><td><em>最新版本:</em></td><td>${dslMap.EDITION}</td></tr>
            <tr><td><em>更新时间:</em></td><td>${DateUtil.format("yyyy-MM-dd HH:mm:ss",dslMap.UPDATE_TIME)}</td></tr>
        </table>
    </div>
    <div class="equip_add_right" id="equipAddRight">
        <div class="deal_switch">
            <h3>DSL配置</h3>
        </div>
        <div class=" equip_add clearfix monitor_report" >
            <div class="ucmLeft " style="width:20%;"  >
                <!--三级树2016-01-14-->
                <div id="cateTree"></div>
            </div>
            <div class="expert_base" id="equipAddRight" style="width:74%;">
                <iframe frameborder="0" width="100%" name="myiframe" id="myiframe" height="1000px" src="${base}/business/pages/servicelist/dsl/viewdslFile.html?versionId=${dslMap.VER_ID}"></iframe>
            </div>
       </div>
    </div>
</div>
 
<script type="text/javascript">
var thirdCate = '${thirdCate}';
var versionId = '${dslMap.VER_ID}';
function queryTree(firstCate,secondCate) {
    var $cateTree = $("#cateTree");
    loading($cateTree);
    $.post("${base}/business/pages/servicelist/dsl/dslconfigTree.html",{"firstCate":firstCate,"thirdCate":thirdCate,"versionId":versionId},function(data,textStatus) {
        loaded($cateTree);
        $cateTree.html(data);
    })
}
 
$(function() {
        queryTree("","");
        
})
</script>
 
[/#if]
[#include "/business/pages/include/footer.html" /]
</body>
</html>