vue获取验证码后,一分钟倒计时

这篇博客介绍了如何在Vue项目中使用Element UI组件库创建一个发送验证码的按钮,并实现点击后的验证逻辑以及验证码60秒倒计时功能。代码中展示了data中的定义,包括校验、发送请求、倒计时处理等关键步骤。
摘要由CSDN通过智能技术生成

html

<el-button type="primary" class="code-but" @click='code'
        :disabled="codeDisabled"
        >
        {{codeMsg}}
</el-button>

请添加图片描述
在data中定义
请添加图片描述
js
请添加图片描述

code() {
      this.$refs.loginFormRef.validate(async (valid) => {
        if (!valid) return;
        const { data: res } = await this.$axios.get('/login/authCode', {
          params: { phone: this.loginForm.phone },
        });
        window.console.log(res);
        if (res.code !== 200) {
          this.$message.error(res.msg);
        } else {
          this.$message.success('获取验证码成功');
          // 获取验证码倒计时
          if (!this.timer) {
            this.timer = setInterval(() => {
              if (this.countdown > 0 && this.countdown <= 60) {
                this.countdown -= 1;
                this.codeDisabled = true;
                if (this.countdown !== 0) {
                  const codeMsgs = '重新获取';
                  this.codeMsg = codeMsgs.concat(this.countdown, 's');
                } else {
                  clearInterval(this.timer);
                  this.codeMsg = '获取验证码';
                  this.countdown = 60;
                  this.timer = null;
                  this.codeDisabled = false;
                }
              }
            }, 1000);
          }
        }
      });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值