#
18516761980
2021-12-27 55b36b1279fd11feafde05a65ec835f55aa89850
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
      <title>自动仓储管理系统</title>
    <link href="${pageContext.request.contextPath}/static/css/bootstrap.css" rel="stylesheet">
    <link href="${pageContext.request.contextPath}/static/font-awesome/css/font-awesome.css" rel="stylesheet">
    <link href="${pageContext.request.contextPath}/static/css/animate.css" rel="stylesheet">
    <link href="${pageContext.request.contextPath}/static/css/style.css" rel="stylesheet">
 
    <!-- Mainly scripts -->
    <script src="${pageContext.request.contextPath}/static/js/jquery-3.1.1.min.js"></script>
    <script src="${pageContext.request.contextPath}/static/js/highcharts.js"></script>
    <script src="${pageContext.request.contextPath}/static/js/bootstrap.js"></script>
    <script src="${pageContext.request.contextPath}/static/js/plugins/metisMenu/jquery.metisMenu.js"></script>
    <script src="${pageContext.request.contextPath}/static/js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
 
    <!-- Custom and plugin javascript -->
    <script src="${pageContext.request.contextPath}/static/js/inspinia.js"></script>
    <script src="${pageContext.request.contextPath}/static/js/plugins/pace/pace.min.js"></script>
<script type="text/javascript" src="jsFiles/index.js"></script>
 
<link href="${pageContext.request.contextPath }/static/css/style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/plugins/bootstrap-table/bootstrap-table.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/plugins/bootstrap-table/bootstrap-table-zh-CN.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/plugins/bootstrap-validator/bootstrapValidator.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/plugins/bootstrap-validator/zh_CN.js"></script>
<link href="${pageContext.request.contextPath }/static/css/plugins/bootstrap-validator/bootstrapValidator.css" rel="stylesheet" type="text/css">
</head>
<style type="text/css">
 .modal {
     position: fixed;  
    top: 10%;
    left: 30%;
    width: 800px;
    height: 800px;
     margin: 100px 100 0 0px;/* margin 负值为宽高的一半 */ */
</style>
<body class="">
<div id="wrapper">
    <nav class="navbar-default navbar-static-side" role="navigation">
        <div class="sidebar-collapse">
            <ul class="nav metismenu" id="side-menu">
                <li class="nav-header">
                    <div class="dropdown profile-element"> <span>
                        <c:if test=""></c:if>
                            <img alt="image" class="img-rounded" src="${pageContext.request.contextPath}/static/img/1.jpg" />
<%--                             <img alt="image" class="img-circle" src="${pageContext.request.contextPath}/static/img/1.jpg" /> --%>
                             </span>
                        <a data-toggle="dropdown" class="dropdown-toggle" href="#">
                            <span class="clear"> <span class="block m-t-xs"> <strong class="font-bold">${user.username}</strong>
                             </span> <span class="text-muted text-xs block">${NAME } <b class="caret"></b></span> </span> </a>
                        <ul class="dropdown-menu animated fadeInRight m-t-xs">
                            <!-- <li><a href="profile.html" id="">个人信息</a></li> -->
                            <li><a onclick="openPassDlg()">修改密码</a></li>
                            <li class="divider"></li>
                            <li><a onclick="quit()">安全退出</a></li>
                        </ul>
                    </div>
                    <div class="logo-element">
                        IN+
                    </div>
                </li>
                <li> 
<!--                     <a onclick="getPage('report/goViewStayTime.action','')"><i class="fa fa-home"></i> -->
                     <a onclick="getPage('basic/goHome.action','')"><i class="fa fa-home"></i>
                     <span class="nav-label">首页</span>
                     </a>
                 </li>
                <c:forEach items="${mlist}" var="tree">
                <li>
                    <a onclick="getPage('${tree.url}','${tree.menu_name}')"><i class="${tree.icon}"></i> <span class="nav-label">${tree.menu_name}</span>
                        <c:if test="${!empty tree.children}">
                        <span class="fa arrow"></span>
                        </c:if>
                     </a>
                    <c:if test="${!empty tree.children}">
                    <ul class="nav nav-second-level collapse">
                        <c:forEach items="${tree.children}" var="menu">
                        <li><a onclick="getPage('${menu.url}','${menu.menu_name}')">
                        <i class="${menu.icon}"></i>
                        <span class="nav-label">${menu.menu_name}</span>
                        </a></li>
                        </c:forEach>
                    </ul>
                    </c:if>
                </li>
                </c:forEach>
                <!--下面两个菜单是固定死的  -->
<!--                 <li> <a onclick="openPassDlg()"><i class="fa fa-key"></i> -->
<!--                  <span class="nav-label">修改密码</span> -->
<!--                 </a></li> -->
                <li> <a onclick="quit()"><i class="fa fa-sign-out"></i>
                 <span class="nav-label">退出登录</span>
                </a></li>
            </ul>
        </div>
    </nav>
    <div id="page-wrapper" class="gray-bg">
        <div class="row border-bottom">
            <nav class="navbar navbar-static-top  " role="navigation" style="margin-bottom: 0">
                <div class="navbar-header">
                    <a class="navbar-minimalize minimalize-styl-2 btn btn-primary " href="#"><i class="fa fa-bars"></i> </a>
                </div>
                <div class="nav navbar-top-links navbar-right">
                        <span class="m-r-sm text-muted welcome-message">
                        <iframe frameborder='0' scrolling='auto' src='include/time.html' style='padding:0px;width:100%;height:5%;' ></iframe>
                        </span>
                </div>
            </nav>
        </div>
<!--         <div class="row wrapper border-bottom white-bg page-heading" id="title"> -->
<!--             <div class="col-sm-4"> -->
<!--                 <h2></h2> -->
<!--                 <ol class="breadcrumb"> -->
<!--                     <li> -->
<!--                         <a href="index.jsp" id="index">首页</a> -->
<!--                     </li> -->
<!--                     <li class="active"> -->
<!--                         <span>Breadcrumb</span> -->
<!--                     </li> -->
<!--                     <li class="active"> -->
<!--                         <strong>Breadcrumb</strong> -->
<!--                     </li> -->
<!--                 </ol> -->
<!--             </div> -->
<!--         </div> -->
        <div class="wrapper wrapper-content" id="content">
        </div>
        <div class="footer">
<!--             <div class="pull-right"> -->
<!--                 10GB of <strong>250GB</strong> Free. -->
<!--             </div> -->
            <div style="text-align:center">
<!--                 <strong>Copyright</strong> Example Company &copy; 2014-2017 -->
                Copyright © 2015 All Rights Reserved. 
                <strong><a href="http://www.zoneyung.com" target="blank">浙江中扬物流装备有限公司</a></strong>
                                       保留所有权利
            </div>
        </div>
    </div>
</div>
 
 
<!-- 模态框(Modal) -->
<!-- 修改 -->
<div id="passDlg" class="modal fade"  tabindex="-1" role="dialog" data-backdrop="static" data-keyboard="false" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title" id="myModalLabel">修改密码</h4>
            </div>
            <div class="container">
            <form class="form-horizontal" id="myform"  method="post">
            <div class="form-group">
            <label class="col-md-2 control-label">旧密码:</label>
            <div class="col-md-3 ">
            <input type="password" id="oldPass" name="oldPass" class="form-control form-control-static"  placeholder="请输入原始密码">
            <input  type="hidden" id="pass" value="${PASS }" name="password">
            <input  type="hidden" id="uid" value="${ID }" name="id">
            </div>
            </div>
            
            <div class="form-group">
            <label class="col-md-2 control-label">新密码:</label>
            <div class="col-md-3 ">
            <input type="password" id="newPass"  name="newPass" class="form-control form-control-static" placeholder="请输入新密码">
            </div>
            </div>
            
            <div class="form-group">
            <label class="col-md-2 control-label">确认密码:</label>
            <div class="col-md-3">
            <input type="password" id="againPass"  name="againPass" class="form-control form-control-static" placeholder="请输入新密码">
            </div>
            </div>
            <div class="modal-footer col-md-6">
            <!--用来清空表单数据-->
            <input type="reset" name="reset" style="display: none;" />
                <button type="button" class="btn btn-default" onclick="closeDlgs()">关闭</button>
               <button type="button" onclick="upPass()" class="btn btn-primary">修改</button>
            </div>
            </form>
            </div>
        </div><!-- /.modal-content -->
    </div><!-- /.modal -->
</div>
<!-- <script type="text/javascript"> -->
<!--   getPage("report/goViewStayTime.action",""); -->
<!-- </script> -->
</body>
</html>