vue 点击按钮获取60秒倒计时


 

 

html

<div class="button">
<van-button type="info" v-show="show" @click="getCode">获取验证码</van-button>
<van-button type="info" v-show="!show" class="count">{{count}} s</van-button>
</div>

data

return {
show: true,
count: '',
timer: null,
}

 

js

getCode(){
const TIME_COUNT = 10;
if (!this.timer) {
this.count = TIME_COUNT;
this.show = false;
this.timer = setInterval(() => {
if (this.count > 0 && this.count <= TIME_COUNT) {
this.count--;
} else {
this.show = true;
clearInterval(this.timer);
this.timer = null;
}
}, 1000)
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM