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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@{
    Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <title></title>
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <meta charset="utf-8" />
    <link href="~/Content/sharestyle.css" rel="stylesheet" />
    <style type="text/css">
        .hightCss {
            color: yellow;
        }
 
        body {
            margin: 0px;
            padding: 0px;
        }
    </style>
 
    <link href="~/Theme/Boostrap/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
    <link href="~/Theme/Customer/Index/style.css" rel="stylesheet" />
    <link href="~/Theme/Customer/Index/Style_responsive.css" rel="stylesheet" />
    <link href="~/Theme/Customer/Index/default.css" rel="stylesheet" />
    <link href="~/Theme/plugins/jbox-v2.3/jBox/Skins2/Gray/jbox.css" rel="stylesheet" />
 
    <script src="~/Scripts/jquery-1.8.3.min.js"></script>
    <script src="~/Theme/Js/UICommon.js"></script>
 
    <script src="~/Theme/Boostrap/bootstrap/js/bootstrap.min.js"></script>
    <script type="text/javascript">
        //控制Left视图中菜单模块的显示
        function showLeftList(divId) {
            self.parent.frames["leftFrame"].showDivMenu(divId);
        }
        //菜单点击高亮显示
        $(function () {
            $(".nav_list ul li a").click(function () {
                $(".nav_list ul li a").css("background-color", "");
                $(".nav_list ul li a").css("color", "#ceebff");
                $(this).css("background-color", "#66d354");
                $(this).css("color", "white");
            });
        });
 
    </script>
</head>
<body>
    <div id="header" class="navbar navbar-inverse navbar-fixed-top">
        <div class="index_header">
            <div class="container-fluid">
                <span class="brand" style="width: auto; color: white;margin-left:0px;">
                    <img src="~/fonts/河北博柯莱-logo04副本白色.png" style="padding-left:13px; width:100px; height:25px;" />
                    @*仓储管理系统*@               
                </span>
 
                <div class="top-nav">
                    <ul class="nav pull-right" id="top_menu">
                        @* <li><a id="openHelp" href="javascript:void(0);" onclick="window.open('/Theme/pdf/web/viewer.html?file=/说明书/WMS使用说明书.pdf','PDF','width:50%;height:50%;top:100;left:100;');"><i class="icon-question-sign"></i>帮助</a></li>*@
                        <li><a id="UId" href="javascript:void(0);" name="UserCode"><i class="icon-user"></i>@ViewBag.LoginUserCode</a></li>
                        @*<li><a id="changePwd" href="javascript:void(0);" onclick="ChangePwd('@ViewBag.LoginUserCode')"><i class="icon-lock"></i>修改密码</a></li>*@
 
                        <li><a id="LoginOut" href="javascript:parent.window.location.href= '/Home/LoginOut'"><i class="icon-off"></i>退出</a></li>
                        @*<li><a id="LoginOut" href="/Home/LoginOut"><i class="icon-off"></i>退出</a></li>*@
                    </ul>
                </div>
 
            </div>
        </div>
    </div>
</body>
</html>