|
@@ -157,8 +157,6 @@ $(function () {
|
|
|
//表单提交
|
|
|
$("#form_register").submit(function (e) {
|
|
|
e.preventDefault();
|
|
|
- console.log()
|
|
|
- return;
|
|
|
var user = $("#username").val(),
|
|
|
usePhoto = $('#usePhoto').val(),
|
|
|
password1 = $("#userpassword").val(),
|
|
@@ -169,7 +167,8 @@ $(function () {
|
|
|
msg('请填写必填项');
|
|
|
return;
|
|
|
} else {
|
|
|
- $('.loading').show().css({'opacity':'0'}).find('p').html('');
|
|
|
+ //$('.loading').show().css({'opacity':'0'}).find('p').html('');
|
|
|
+ $('.loading').show()
|
|
|
$.ajax({
|
|
|
type: "POST",
|
|
|
dataType: "json",
|
|
@@ -182,6 +181,7 @@ $(function () {
|
|
|
"mobileCode": mobileCode
|
|
|
},
|
|
|
success: function (rest) {
|
|
|
+ $('.loading').hide()
|
|
|
if (rest.error && rest.error.length) {
|
|
|
msg(rest.error[0].message);
|
|
|
} else {
|
|
@@ -192,9 +192,9 @@ $(function () {
|
|
|
$('.login').fadeIn(800);
|
|
|
$('#form_register').fadeOut(800)
|
|
|
}
|
|
|
- },1000)
|
|
|
+ },2000)
|
|
|
}
|
|
|
- $('.loading').hide()
|
|
|
+
|
|
|
}
|
|
|
})
|
|
|
}
|