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)
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-19
  • 2022-02-12
  • 2022-12-23
  • 2021-12-22
  • 2021-11-28
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2021-12-28
  • 2022-12-23
相关资源
相似解决方案