bklLiudl
2024-07-23 675b8bcc4a3630d95e3d0b97d933e63442075ecb
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
@{
    Layout = null;
}
 
<!DOCTYPE html>
 
<html>
<head>
    <title>Left</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta charset="utf-8" />
    <link href="~/Content/sharestyle.css" rel="stylesheet" />
    <link href="~/Content/main.css" rel="stylesheet" />
    <style type="text/css">
        body {
            margin: 0px;
            padding: 0px;
        }
    </style>
 
    <script src="~/Scripts/jquery-1.8.3.min.js"></script>
    <script src="~/Theme/Js/UICommon.js"></script>
    <script type="text/javascript">
        function ShowMenuList(id) {
            var objectobj = document.getElementById(id);
            var dtObj = document.getElementById("dt_" + id);
            if (objectobj.style.display == "none") {
                objectobj.style.display = "";
                dtObj.setAttribute("class", "head2");
                //其它菜单折叠
                $(dtObj).parent().parent().find("dt").not(dtObj).attr("class", "head1"); //折叠
                $(objectobj).parent().parent().find("ul").not(objectobj).css("display", "none"); //隐藏菜单子项
            }
            else {
                objectobj.style.display = "none";
                dtObj.setAttribute("class", "head1");
            }
        }
 
        // 多页签管理
        function goNewPage(url, name) {
            self.parent.frames["mainFrame"].addTab(url, name);
        }
    </script>
</head>
<body>
    <div>
        <div class="leftbar" id="divFinancial">
            @Html.Raw(ViewBag.MenuItems)
        </div>
    </div>
</body>
</html>