|
@@ -294,29 +294,15 @@ $(function(){
|
|
|
$('.yanzhengma_cont').click(function () {
|
|
|
$('.yanzhengma_cont img').attr('src', (globalConfig.context + "/open/getVCode?t=" + Math.random()))
|
|
|
})
|
|
|
- var tt = 30;
|
|
|
+ var tt = 30;
|
|
|
+ $('#photo').attr('disabled',false)
|
|
|
+ $('#photo').css({color:'#f18101',lineHeight:'37px',padding:'0px 1px'})
|
|
|
$('#photo').click(function () {
|
|
|
+ if(piccode.value&&username.value){
|
|
|
//手机验证功能
|
|
|
var ophoto = $('#username').val();
|
|
|
var types = $('#zhuangjia').prop("checked") ? '0' : '1';
|
|
|
var phott = $('#piccode').val();
|
|
|
- //验证码倒计时
|
|
|
- $('#photo').attr('disabled', true);
|
|
|
- $(this).attr('disabled', true);
|
|
|
- var timer = setInterval(function () {
|
|
|
- tt -= 1;
|
|
|
- $('#photo').attr('disabled', true);
|
|
|
- $(this).val("发送"+'('+tt+'s'+')');
|
|
|
- $(this).css({color:'#cccccc'})
|
|
|
- if (tt == 0) {
|
|
|
- clearInterval(timer);
|
|
|
- $('#photo').attr('disabled', false);
|
|
|
- $(this).attr('disabled', false);
|
|
|
- tt=30;
|
|
|
- $(this).css({color:'rgb(241, 129, 1)'})
|
|
|
- $(this).val('重新发送');
|
|
|
- }
|
|
|
- }.bind(this), 1000);
|
|
|
$.ajax({
|
|
|
type: "GET",
|
|
|
url: globalConfig.context + "/open/getMCode",
|
|
@@ -330,13 +316,33 @@ $(function(){
|
|
|
if (data.error && data.error.length) {
|
|
|
$('#msg').val(data.error[0].message);
|
|
|
msg();
|
|
|
+ $('.yanzhengma_cont').click();
|
|
|
} else {
|
|
|
$('#msg').val('发送成功');
|
|
|
- msg();
|
|
|
+ //验证码倒计时
|
|
|
+ alert(tt)
|
|
|
+ $('#photo').attr('disabled', true);
|
|
|
+ var timer = setInterval(function () {
|
|
|
+ tt -= 1;
|
|
|
+ $('#photo').val("发送"+'('+tt+'s'+')');
|
|
|
+ $('#photo').css({color:'#cccccc'})
|
|
|
+ if (tt == 0) {
|
|
|
+ clearInterval(timer);
|
|
|
+ $('#photo').attr('disabled', false);
|
|
|
+ tt=30;
|
|
|
+ $('#photo').css({color:'#f18101'})
|
|
|
+ $('#photo').val('重新发送');
|
|
|
+ }
|
|
|
+ }.bind(this), 1000);
|
|
|
+ msg();
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
});
|
|
|
+ }else{
|
|
|
+ $('#msg').val('验证码/手机号码不能为空');
|
|
|
+ msg();
|
|
|
+ }
|
|
|
});
|
|
|
//提示框渐隐函数
|
|
|
$('.smg').hide();
|