From 41ccb6f5e7b80582916788e7d441de7f4c9b5c96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BB=93=E5=8F=91=E5=8F=97=E9=95=BF=E7=94=9F?= Date: Wed, 9 Feb 2022 03:36:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=8C=E8=AF=8D=E4=BF=9D=E5=AD=98?= 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 d46d2d3..a51a66a 100644 --- a/src/views/api/Music.vue +++ b/src/views/api/Music.vue @@ -261,7 +261,7 @@ export default class Music extends BaseList { (this.$refs.lyricForm as VForm).validate(async (valid: boolean) => { if (!valid) return this.modalLoading = true - const data = await this.$http.post(`/api/music/lyric/save?musicId=${this.currentRow ? this.currentRow._id : ''}`, this.lyricFormData) + const data = await this.$http.post(`/api/v1/music/lyric/save?musicId=${this.currentRow ? this.currentRow._id : ''}`, this.lyricFormData) this.modalLoading = false this.modifyLyricModal = false ElMessage.success(data.message)