|
@@ -163,34 +163,34 @@ export default {
|
|
|
} else {
|
|
|
_api = getCode
|
|
|
}
|
|
|
- // _api({ phone: this.phone, x: sliderX, y: this.slideOptions.sliderY, xxx: sliderKey })
|
|
|
- // .then((res) => {
|
|
|
- this.$emit('success-verify', true)
|
|
|
- this.slideLoading = false
|
|
|
- done()
|
|
|
- if (!this.codeTimer) {
|
|
|
- this.codeLoading = true
|
|
|
- this.codeCount = 60
|
|
|
- this.codeTimer = setInterval(() => {
|
|
|
- if (this.codeCount > 1 && this.codeCount <= 60) {
|
|
|
- this.codeCount--
|
|
|
- } else {
|
|
|
- clearInterval(this.codeTimer) // 清除定时器
|
|
|
- this.codeTimer = null
|
|
|
- this.codeLoading = false
|
|
|
+ _api({ phone: this.phone, x: sliderX, y: this.slideOptions.sliderY, xxx: sliderKey })
|
|
|
+ .then((res) => {
|
|
|
+ this.$emit('success-verify', true)
|
|
|
+ this.slideLoading = false
|
|
|
+ done()
|
|
|
+ if (!this.codeTimer) {
|
|
|
+ this.codeLoading = true
|
|
|
+ this.codeCount = 60
|
|
|
+ this.codeTimer = setInterval(() => {
|
|
|
+ if (this.codeCount > 1 && this.codeCount <= 60) {
|
|
|
+ this.codeCount--
|
|
|
+ } else {
|
|
|
+ clearInterval(this.codeTimer) // 清除定时器
|
|
|
+ this.codeTimer = null
|
|
|
+ this.codeLoading = false
|
|
|
+ }
|
|
|
+ }, 1000)
|
|
|
}
|
|
|
- }, 1000)
|
|
|
- }
|
|
|
- this.isShowGraphicVerificationDialog = false
|
|
|
- this.$message({
|
|
|
- message: '发送成功,请注意查看手机短信',
|
|
|
- type: 'success'
|
|
|
- })
|
|
|
- // })
|
|
|
- // .catch(() => {
|
|
|
- // this.slideLoading = false
|
|
|
- // error()
|
|
|
- // })
|
|
|
+ this.isShowGraphicVerificationDialog = false
|
|
|
+ this.$message({
|
|
|
+ message: '发送成功,请注意查看手机短信',
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.slideLoading = false
|
|
|
+ error()
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
}
|