前端代码
countDown() {
let time = 60;
let that = this;
let sendTimer = setInterval(function () {
time--;
//修改文字和按钮状态 ‘重新发送( ' + time +')’
if(time < 0){
clearInterval(sendTimer)
//修改文字和按钮状态 ‘获取验证码’
that.mailCodeSendBtnWords = '获取验证码'
that.mailCodeSendDisable = false;
}else{
//修改 '重新发送( ' + time +')'
that.mailCodeSendBtnWords = '重新发送( ' + time +')';
}
}, 1000)
}
报错内容:


日志已经告诉你啦,缺少模块,检查一下,有没有依赖/安装