1.点击获取验证码的时候,按钮的文字变成倒计时,并且把这个获取验证码的按钮,变成不可点击 因此,我们需要以下这几个字段: const countdown = ref(60) //倒计时的时长,这里为60秒 const timer = ref(null) //定义一个定时器 const codeText = ref('获取验证码') //一个按钮的文案 const btndisabled = r...
btntxt:'发送验证码', seconds:60, disabled:false, } }, methods: { getVerificationCode() { const timer= setInterval(() =>{this.btntxt =this.seconds + '秒再试';this.seconds--;this.disabled =true;if(this.seconds === 0){ clearInterval(timer);this.btntxt = '发送验证码';this.seconds ...
解决办法是写个判断,当codeTime大于60的时候,弹窗提示用户不能重复获取验证码。当倒计时运行完了之后要清除倒计时。 代码: exportdefault{data() {return{codeTime:0, } },methods: {getCheckNum(){if(this.codeTime>0){ uni.showToast({title:'不能重复获取',icon:"none"});return; }else{this.codeTime...
btntxt:'发送验证码', seconds:60, disabled:false, } }, methods: { getVerificationCode() { const timer= setInterval(() =>{this.btntxt =this.seconds + '秒再试';this.seconds--;this.disabled =true;if(this.seconds === 0){ clearInterval(timer);this.btntxt = '发送验证码';this.seconds ...
uni-app实现获取验证码倒计时功能本⽂实例为⼤家分享了uni-app实现获取验证码倒计时的具体代码,供⼤家参考,具体内容如下 实现的效果 页⾯部分是⼀个三⽬运算,codeTime是倒计时的时间。<template> <view> <view class="three"> <view class="get" @tap="getCheckNum()"> <text>{{!codeTime?'...