<!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>
|