From a267d46464a5a5009bea28c0271a25ad4b10cb93 Mon Sep 17 00:00:00 2001 From: ibuler Date: Tue, 14 Nov 2023 14:19:33 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E7=AA=97=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Apps/UserConfirmDialog/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Apps/UserConfirmDialog/index.vue b/src/components/Apps/UserConfirmDialog/index.vue index bed7b04de..5bf04ff64 100644 --- a/src/components/Apps/UserConfirmDialog/index.vue +++ b/src/components/Apps/UserConfirmDialog/index.vue @@ -121,7 +121,6 @@ export default { } }, mounted() { - // const onRecvCallback = _.debounce(this.performConfirm, 500) this.$eventBus.$on('showConfirmDialog', this.performConfirm) }, methods: { @@ -201,6 +200,7 @@ export default { } this.$axios.post(`/api/v1/authentication/confirm/`, data).then(res => { this.callback() + this.secretValue = '' this.visible = false }) }