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
<!doctype html>
<html class="no-js">
<head>
    <meta charset="utf-8">
    <title>运维经理桌面</title>
[#include "/business/pages/include/static.html" /]
</head>
<body class="service">
[#include "/business/pages/desktop/deskheader.html" /]
[#include "/business/pages/desktop/deskMenuInclude.html" /]
[#include "/business/pages/desktop/deskCusHeader.html" /]
<div class="tm_con">
    <div id="managerDeskDetail"></div>
    [#include "/business/pages/desktop/orderInclude.html" /]
</div>
 
<script type="text/javascript">
    //显示${Constants.CUSTOMER_CONSTANTS}信息
    function showCusInfo(cusId){
        $(".nl_show a.focus").removeClass("focus");
        $("a[cid="+cusId+"]").addClass("focus");
        var param = {"cusId":cusId};
        $("#managerDeskDetail").load("${base}/business/pages/desktop/operationDeskDetail.html",param);
    }
    
    //显示项目信息
    $(function() {
        var cusId = $(".nl_show a.focus").attr("cid");
        showCusInfo(cusId);
    })
    
</script>
 
[#include "/business/pages/include/footer.html" /]
</body>
</html>