mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
Refactor
This commit is contained in:
parent
64658fd9f2
commit
a5d2659d98
@ -29,7 +29,7 @@
|
||||
:title="$t('auth.change-captcha')"
|
||||
data-placement="top"
|
||||
data-toggle="tooltip"
|
||||
@click="refreshCaptcha"
|
||||
@click="refresh"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
@ -71,7 +71,7 @@ export default {
|
||||
onVerify(response) {
|
||||
this.value = response
|
||||
},
|
||||
refreshCaptcha() {
|
||||
refresh() {
|
||||
if (this.recaptcha) {
|
||||
this.$refs.recaptcha.reset()
|
||||
} else {
|
||||
|
@ -88,7 +88,7 @@ export default {
|
||||
this.infoMsg = ''
|
||||
this.warningMsg = msg
|
||||
this.pending = false
|
||||
this.$refs.captcha.refreshCaptcha()
|
||||
this.$refs.captcha.refresh()
|
||||
}
|
||||
},
|
||||
},
|
||||
|
@ -118,7 +118,7 @@ export default {
|
||||
this.infoMsg = ''
|
||||
this.warningMsg = msg
|
||||
this.pending = false
|
||||
this.$refs.captcha.refreshCaptcha()
|
||||
this.$refs.captcha.refresh()
|
||||
}
|
||||
},
|
||||
},
|
||||
|
@ -179,7 +179,7 @@ export default {
|
||||
} else {
|
||||
this.infoMsg = ''
|
||||
this.warningMsg = msg
|
||||
this.$refs.captcha.refreshCaptcha()
|
||||
this.$refs.captcha.refresh()
|
||||
this.pending = false
|
||||
}
|
||||
},
|
||||
|
@ -17,8 +17,8 @@ test('display recaptcha', () => {
|
||||
})
|
||||
|
||||
test('refresh recaptcha', () => {
|
||||
const wrapper = mount<Vue & { refreshCaptcha(): void }>(Captcha)
|
||||
wrapper.vm.refreshCaptcha()
|
||||
const wrapper = mount<Vue & { refresh(): void }>(Captcha)
|
||||
wrapper.vm.refresh()
|
||||
})
|
||||
|
||||
test('recaptcha verified', () => {
|
||||
|
@ -9,7 +9,7 @@ const Captcha = Vue.extend({
|
||||
execute() {
|
||||
return Promise.resolve('captcha')
|
||||
},
|
||||
refreshCaptcha() { /* */ },
|
||||
refresh() { /* */ },
|
||||
},
|
||||
})
|
||||
|
||||
|
@ -7,7 +7,7 @@ const Captcha = Vue.extend({
|
||||
execute() {
|
||||
return Promise.resolve('a')
|
||||
},
|
||||
refreshCaptcha() { /* */ },
|
||||
refresh() { /* */ },
|
||||
},
|
||||
template: '<img>',
|
||||
})
|
||||
|
@ -10,7 +10,7 @@ const Captcha = Vue.extend({
|
||||
execute() {
|
||||
return Promise.resolve('captcha')
|
||||
},
|
||||
refreshCaptcha() { /* */ },
|
||||
refresh() { /* */ },
|
||||
},
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user