代码如下 无css
手机号码验证
为了安全,我们会向手机发送验证码
export default { name:'trans', data:function(){ return{ time:5, show:false, CountDown:true, } }, methods:{ submit(){ alert("注册成功"); }, Time(){ let t =setInterval(()=>{ this.time--; if(this.time==0){ clearInterval(t); this.show=true; this.CountDown=false; this.tttime=5; } },1000) }, TTTime(){ this.time=5 this.show=false; this.CountDown=true; let t=setInterval(()=>{ this.time--; if(this.time==0){ clearInterval(t); this.show=true; this.CountDown=false; } },1000) } }, mounted() { this.$refs.a1.focus(); this.Time(); },}