|
@@ -87,6 +87,7 @@ export default {
|
|
|
timer:0,
|
|
|
codeStr:'获取验证码',
|
|
|
codeCountDown:60,
|
|
|
+ isGetNewCode:false,
|
|
|
form:{
|
|
|
mobile:'',
|
|
|
picCode:'',
|
|
@@ -113,10 +114,13 @@ export default {
|
|
|
methods: {
|
|
|
checkForm(){
|
|
|
//首先检查是否是重新获取验证码
|
|
|
- if(this.codeStr==='重新获取'){
|
|
|
+ if(this.codeStr==='重新获取'&&!this.isGetNewCode){
|
|
|
//引导用户重新输入图形验证码
|
|
|
+ this.$message.warning('重新获取需再次输入图形验证码')
|
|
|
this.getCodePic()
|
|
|
this.form.picCode = ''
|
|
|
+ this.isGetNewCode = true
|
|
|
+ return
|
|
|
}
|
|
|
//检查手机号和图形验证码是否正确
|
|
|
const {picCode,mobile} = this.form
|
|
@@ -143,7 +147,9 @@ export default {
|
|
|
}).then(res=>{
|
|
|
if(res.Ret!==200) return
|
|
|
this.$message.success('验证码已发送')
|
|
|
+ this.isGetNewCode = false
|
|
|
//60秒倒计时
|
|
|
+ this.codeCountDown = 60
|
|
|
this.countDown()
|
|
|
this.timer = setInterval(()=>{
|
|
|
this.countDown()
|