From a6d4f92b8e9c17dd341846e1be2f355774b449f3 Mon Sep 17 00:00:00 2001 From: Shxuuer Date: Tue, 2 Apr 2024 14:08:00 +0800 Subject: [PATCH] bug(record): fix axios request to post --- src/components/Admin/Record.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Admin/Record.vue b/src/components/Admin/Record.vue index 2772304..f5019f1 100644 --- a/src/components/Admin/Record.vue +++ b/src/components/Admin/Record.vue @@ -335,7 +335,7 @@ export default { } if (this.reason) obj.reason = this.reason this.confirmLoading = true - axios.put(`/pronunciation/${id}/examine`, obj) + axios.post(`/pronunciation/${id}/examine`, obj) .then(async () => { await this.filter() this.$message.success('已审核')