python学习

This commit is contained in:
2019-07-22 14:50:06 +08:00
parent accd7523be
commit 40dac844cc
19 changed files with 621 additions and 400 deletions

View File

@@ -0,0 +1,59 @@
;
var mod_pwd_ops = {
init:function(){
this.eventBind();
},
eventBind:function(){
$("#save").click(function(){
var btn_target = $(this);
if( btn_target.hasClass("disabled") ){
common_ops.alert("正在处理!!请不要重复提交~~");
return;
}
var old_password = $("#old_password").val();
var new_password = $("#new_password").val();
if( !old_password ){
common_ops.alert( "请输入原密码~~" );
return false;
}
if( !new_password || new_password.length < 6 ){
common_ops.alert( "请输入不少于6位的新密码~~" );
return false;
}
btn_target.addClass("disabled");
var data = {
old_password: old_password,
new_password: new_password
};
$.ajax({
url:common_ops.buildUrl( "/user/reset-pwd" ),
type:'POST',
data:data,
dataType:'json',
success:function( res ){
btn_target.removeClass("disabled");
var callback = null;
if( res.code == 200 ){
callback = function(){
window.location.href = window.location.href;
}
}
common_ops.alert( res.msg,callback );
}
});
});
}
};
$(document).ready( function(){
mod_pwd_ops.init();
} );