From 2934dbfbe6750113516ac08ebbcfae81afce6b19 Mon Sep 17 00:00:00 2001 From: RockChinQ <1010553892@qq.com> Date: Sun, 12 May 2024 17:06:05 +0800 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=E4=B8=8D=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E7=9A=84=E2=80=9C=E6=92=A4=E5=9B=9E=E2=80=9D=E6=94=B9=E6=88=90?= =?UTF-8?q?=E2=80=9C=E5=8F=96=E6=B6=88=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/world.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/world.vue b/frontend/src/pages/world.vue index 2be2ac1..b47bdcf 100644 --- a/frontend/src/pages/world.vue +++ b/frontend/src/pages/world.vue @@ -345,14 +345,14 @@ export default { }) .then((response) => { if (response.data.code === 0) { - this.toast('撤回成功', 'success') + this.toast('取消成功', 'success') this.getPosts() } else { - this.toast('撤回失败:' + response.data.msg) + this.toast('取消失败:' + response.data.msg) } }) .catch((error) => { - this.toast('撤回失败:' + error.response.data.msg) + this.toast('取消失败:' + error.response.data.msg) console.error(error) }) },