赞
踩
//倒计时60秒
function countDown(that,count) {
if (count == 0) {
that.setData({
timeCountDownTop: '获取验证码',
counting:false
})
return;
}
that.setData({
counting:true,
timeCountDownTop: count + '秒后重新获取',
})
setTimeout(function(){
count--;
countDown(that, count);
}, 1000);
}
Page({
data:{
counting:false
},
//生成验证码
generateVerifyCode:function() {
var that = this;
if (!that.data.counting) {
wx.showToast({
title: '验证码已发送',
})
//开始倒计时60秒
countDown(that, 60);
}
},
})
setTimeout(function(){
count--;
countDown(that, count);
}, 1000);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。