vue 实现验证码倒计时60s发送

<template>
    <div>
        <div class="input-div" v-show="formData.phone">
            <input type="text" class="input code" name="code" v-model.trim="formData.code" placeholder="验证码">
            <button @click="getCode(formData)" class="code-btn" :disabled="!show">
                <span v-show="show">获取验证码</span>
                <span v-show="!show" class="count">{{count}} s</span>
            </button>
        </div>
    </div>
</template> 
<script>
import $ from 'jquery'
const TIME_COUNT = 60;
export default{
    data(){
        return {
            formData: {
                phone:'15933527109',
                code:'',
            },
            show: true,
            count: '',
            timer: null,
        }
    },
    methods:{
        getCode(formData){
            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)
            }
        } 
    }
}
</script>   
上一篇:攻防世界misc 坚持60s


下一篇:详谈抖音怎么发长视频(60s)?有怎么设置视频置顶?