美文网首页
验证码倒计时

验证码倒计时

作者: 曹锦花 | 来源:发表于2020-09-15 12:29 被阅读0次
    data() {
        return {
            isCountdown: false, //倒计时状态
            time: '', //倒计时 
            currentTime: 61, // 当前倒计时
        }
    },
        getCode() {
            let that = this;
                let clock = setInterval(function(){
                that.currentTime--;
                that.time = that.currentTime + '秒'
                if (that.currentTime <= 0) {
                    clearInterval(clock)
                    that.time = '',
                    that.currentTime = 61,
                    that.isCountdown = false
                }
            }, 1000); //一秒执行一次
        },

相关文章

网友评论

      本文标题:验证码倒计时

      本文链接:https://www.haomeiwen.com/subject/lqxfyktx.html