From 85bf0c7137addc2d9620889533a0e6c618d26f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=B4=AA=E6=B4=AA?= <2498601771@qq.com> Date: Mon, 25 Sep 2023 11:21:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Di18n=E5=88=9B=E5=BB=BA?= =?UTF-8?q?/=E4=BF=AE=E6=94=B9=E5=9B=BD=E9=99=85=E5=8C=96=E6=97=B6?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E6=9C=AA=E6=8F=90=E7=A4=BA=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/rightBox/settings/I18nBox.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/rightBox/settings/I18nBox.vue b/src/components/rightBox/settings/I18nBox.vue index efe410a1..5ea74846 100644 --- a/src/components/rightBox/settings/I18nBox.vue +++ b/src/components/rightBox/settings/I18nBox.vue @@ -112,6 +112,9 @@ export default { } else { this.$message.error(res.data.message) } + }).catch(e => { + this.blockOperation.save = false + this.$message.error(this.errorMsgHandler(e)) }) } else { axios.post(this.url, this.editObject).then(res => { @@ -122,6 +125,9 @@ export default { } else { this.$message.error(res.data.message) } + }).catch(e => { + this.blockOperation.save = false + this.$message.error(this.errorMsgHandler(e)) }) } } else {