验证码倒计时
作者:chrispy
data() {return {show: true,count: "",timer: null};},// 验证码倒计时getCode() {const TIME_COUNT = 60;if (!this.timer) {this.count = TIME_COUNT;this.show = false;this.timer = setInterval(() => {if (this.count > 0 && this.cou
data() {
return {
show: true,
count: "",
timer: null
};
},
// 验证码倒计时
getCode() {
const TIME_COUNT = 60;
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);
}
},
猜你喜欢
您可能感兴趣的文章:
- 判断浏览器 是否是火狐 或 谷歌
- jquery 替换手机号中间几位 为星号
- 富文本编辑器 wangeditor
- V - Distpicker 一个简单易用的地区选择器
- 上传文件到 阿里云
- element ui 文件上传
- 配置 postcss-pxtorem 自动转换px为rem
- 项目常用插件配置
- 生成二维码
- 深度监听
- vue-cli安装
- vue 不支持ie11解决方案
- 创建一个 React 项目
- mysql 修改,查看ALTER AUTO_INCREMENT
- linux shell睡眠命令
- 浏览器各类高度
- 常用属性html
- 表单验证
- 微信6.7.4 ios12软键盘顶起页面后隐藏不回弹解决方案