From 070939e4c90e66a445e47a58cdecd1bf094bf11f Mon Sep 17 00:00:00 2001 From: YWQ HK IX <568170040@qq.com> Date: Sat, 27 May 2023 00:48:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BD=9C=E5=93=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/myCreating/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/myCreating/index.vue b/src/views/myCreating/index.vue index f254e91..06308db 100644 --- a/src/views/myCreating/index.vue +++ b/src/views/myCreating/index.vue @@ -260,9 +260,13 @@ function delPhotoVideo(videoID) { delUserPhotoVideoByID(videoID) .then((res) => { console.log(res, "res"); + const msg = lanChange.value == "zh-cn" ? `删除成功!` : `Success !`; + ElMessage.success(msg); + getPhotoVideoList(pageNum.value, pageSize.value, title.value); }) .catch((err) => { console.log(err, "err"); + ElMessage.error(err.message); }); }