zj
2024-06-03 3603ecb207f7e712c635f19531e05fac4d19e53f
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
<%@ page language="java" pageEncoding="utf-8" isELIgnored="false"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
 
<%@ include file="include/pagetop.jsp"%>
<!DOCTYPE html>
<html>
<head>
<%@ include file="include/head.jsp"%>
</head>
<body>
    <%@ include file="include/loading.jsp"%>
<%--     <%@ include file="include/top.jsp"%> --%>
<%--     <%@ include file="include/menu_left.jsp"%> --%>
    <div class="ifr-dody">
        <div class="ifr-con">
            <h3>修改登录密码</h3>
            <%@ include file="include/alert.jsp"%>
            <div class="row">
                <div class="col-md-12 col-lg-12">
                    <div class="panel panel-default">
                        <div class="panel-title">
                            <ul class="panel-tools">
                                <li><a class="icon minimise-tool"><i
                                        class="fa fa-minus"></i></a></li>
                                <li><a class="icon expand-tool"><i class="fa fa-expand"></i></a></li>
                            </ul>
                        </div>
 
                        <div class="panel-body">
                            <form class="form-horizontal" action="<%=basePath%>normal/adminPasswordChangeAction!change.action" method="post" name="mainForm" id="mainForm">
                                <div class="form-group">
                                    <label class="col-sm-2 control-label form-label">旧登录密码</label>
                                    <div class="col-sm-7">
                                        <input type="password" id="oldpassword" name ="oldpassword" class="form-control"/>
                                    </div>
                                </div>
                                <div class="form-group">
                                    <label class="col-sm-2 control-label form-label">新密码</label>
                                    <div class="col-sm-7">
                                        <input type="password" id="password" name ="password" class="form-control" placeholder="由数字、字符、特殊字符(!@#$%^&*)三种中的两种组成,长度不能少于8位"/>
                                    </div>
                                    
                                </div>
                                <div class="form-group">
                                    <label class="col-sm-2 control-label form-label">确认新密码</label>
                                    <div class="col-sm-7">
                                        <input type="password" id="confirm_password" name ="confirm_password" class="form-control"/>
                                    </div>
                                </div>
                                <div class="col-sm-1">
                                    <!-- 模态框(Modal) -->
                                    <div class="modal fade" id="modal_succeeded" tabindex="-1"
                                        role="dialog" 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="modal-body">
                                                    <div class="form-group" >
                                                        <label for="input002" class="col-sm-3 control-label form-label">登录人资金密码</label>
                                                        <div class="col-sm-4">
                                                            <input id="login_safeword" type="password" name="login_safeword"
                                                                class="login_safeword" placeholder="请输入登录人资金密码" >
                                                        </div>
                                                    </div>
                                                    <div class="form-group" >
                                                        <label for="input002" class="col-sm-3 control-label form-label">谷歌验证码</label>
                                                        <div class="col-sm-4">
                                                            <input id="google_auth_code"  name="google_auth_code"
                                                                 placeholder="请输入谷歌验证码" >
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="modal-footer" style="margin-top: 0;">
                                                    <button type="button" class="btn "
                                                        data-dismiss="modal">关闭</button>
                                                    <button id="sub" type="submit"
                                                        class="btn btn-default" >确认</button>
                                                </div>
                                            </div>
                                            <!-- /.modal-content -->
                                        </div>
                                        <!-- /.modal -->
                                    </div>
                                </div>
                                <div class="form-group">
                                    <div class="col-sm-offset-2 col-sm-10">
                                         <a href="javascript:submit()"  class="btn btn-default" >保存</a>
                                    </div>
                                </div>
 
                            </form>
 
                        </div>
 
                    </div>
                </div>
            </div>
        </div>
 
<%@ include file="include/footer.jsp"%>
 
 
    </div>
 
    <%@ include file="include/js.jsp"%>
 
 
    <script type="text/javascript">
   function submit(){
       $('#modal_succeeded').modal("show");
  }
 
    </script>
<script type="text/javascript">
    var setInt = null;//定时器
    
    clearInterval(setInt);
    function sendCode(){
        var url = "<%=basePath%>normal/adminEmailCodeAction!sendCode.action";
         var data = {"code_context":"changeOwnPwd","isSuper":false};
         goAjaxUrl(url,data,function(tmp){
             
             $("#email_code_button").attr("disabled","disabled");
             var timeout = 60;
             setInt = setInterval(function(){
                 if(timeout<=0){
                     clearInterval(setInt);
                     timeout=60;
                     $("#email_code_button").removeAttr("disabled");
                     $("#email_code_button").html("获取验证码");
                     return;
                 }
                 timeout--;
                 $("#email_code_button").html("获取验证码  "+timeout);
             },1000);
         },function(){
         }); 
     }
    
    function goAjaxUrl(targetUrl,data,Func,Fail){
//         console.log(data);
        $.ajax({
            url:targetUrl,
            data:data,
            type : 'get',
            dataType : "json",
            success: function (res) {
                var tmp = $.parseJSON(res)
                console.log(tmp);
                if(tmp.code==200){
                    Func(tmp);
                }else if(tmp.code==500){
                    Fail();
                    swal({
                        title : tmp.message,
                        text : "",
                        type : "warning",
                        showCancelButton : true,
                        confirmButtonColor : "#DD6B55",
                        confirmButtonText : "确认",
                        closeOnConfirm : false
                    });
                }
              },
                error : function(XMLHttpRequest, textStatus,
                        errorThrown) {
                    swal({
                        title : "请求错误",
                        text : "请检查管理员邮箱是否配置",
                        type : "warning",
                        showCancelButton : true,
                        confirmButtonColor : "#DD6B55",
                        confirmButtonText : "确认",
                        closeOnConfirm : false
                    });
                    console.log("请求错误");
                }
        });
    }
    </script>
</body>
</html>