|
@@ -58,7 +58,7 @@ export default {
|
|
|
apiType: {
|
|
|
type: [String, Number],
|
|
|
default: 'default' // default, update, privacy
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -86,7 +86,7 @@ export default {
|
|
|
this.$emit('input', this.inputCode)
|
|
|
},
|
|
|
// 获取验证码
|
|
|
- async getVerificationCode() {
|
|
|
+ async getVerificationCode(x,y) {
|
|
|
if (!this.phone) {
|
|
|
this.$message.error('请填写电话号码')
|
|
|
return
|
|
@@ -100,7 +100,7 @@ export default {
|
|
|
} else {
|
|
|
_api = getCode
|
|
|
}
|
|
|
- const res = await _api({ phone: this.phone, x: '0', y: '0' })
|
|
|
+ const res = await _api({ phone: this.phone, x,y })
|
|
|
this.$message({
|
|
|
message: '发送成功,请注意查看手机短信',
|
|
|
type: 'success'
|
|
@@ -166,6 +166,7 @@ export default {
|
|
|
this.$emit('success-verify', true)
|
|
|
this.slideLoading = false
|
|
|
done()
|
|
|
+ this.getVerificationCode(sliderX, this.slideOptions.sliderY)
|
|
|
if (!this.codeTimer) {
|
|
|
this.codeLoading = true
|
|
|
this.codeCount = 60
|
|
@@ -180,10 +181,10 @@ export default {
|
|
|
}, 1000)
|
|
|
}
|
|
|
this.isShowGraphicVerificationDialog = false
|
|
|
- this.$message({
|
|
|
- message: '发送成功,请注意查看手机短信',
|
|
|
- type: 'success'
|
|
|
- })
|
|
|
+ // this.$message({
|
|
|
+ // message: '发送成功,请注意查看手机短信',
|
|
|
+ // type: 'success'
|
|
|
+ // })
|
|
|
// })
|
|
|
// .catch(() => {
|
|
|
// this.slideLoading = false
|