From 712e9a1d0e9d436c75261835f3e78583f7973ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E8=BF=9B=E7=A6=84?= Date: Tue, 2 Nov 2021 18:14:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8E=A5=E5=8F=A3=E8=B0=83?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/api/Music.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/api/Music.vue b/src/views/api/Music.vue index e4ab7e3..2b8a0cb 100644 --- a/src/views/api/Music.vue +++ b/src/views/api/Music.vue @@ -268,7 +268,7 @@ export default class Music extends BaseList { } async saveMusicLib(row: MusicModel) { if (!this.currentRow) return - const data = await this.$http.post<{id: string, libId: string}, any>('/api/music/updateLib', {id: this.currentRow._id, libId: this.currentRow.lib_id}) + const data = await this.$http.post<{id: string, libId: string}, any>('/api/v2/music/updateLib', {id: this.currentRow._id, libId: this.currentRow.lib_id}) ElMessage.success(data.message) row.lib_id = this.currentRow.lib_id row.isEditing = false