From 8564a6881eb9df87dfbd5e9afa0ae2dc0e877bdd Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Mon, 20 Feb 2023 08:40:26 +0800 Subject: [PATCH] bug --- project/qujing/app/AppExaminationManage/components/List.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/qujing/app/AppExaminationManage/components/List.vue b/project/qujing/app/AppExaminationManage/components/List.vue index 90b67165..ea8baaee 100644 --- a/project/qujing/app/AppExaminationManage/components/List.vue +++ b/project/qujing/app/AppExaminationManage/components/List.vue @@ -166,7 +166,7 @@ }, unshelf (id) { - this.$confirm('确定下架该活动?').then(() => { + this.$confirm('确定下架该考试?').then(() => { this.instance.post(`/app/appexaminationinfo/revoke?id=${id}`).then(res => { if (res.code == 0) { this.$message.success('下架成功!') @@ -177,7 +177,7 @@ }, remove (id) { - this.$confirm('确定删除该活动?').then(() => { + this.$confirm('确定删除该考试?').then(() => { this.instance.post(`/app/appexaminationinfo/delete?id=${id}`).then(res => { if (res.code == 0) { this.$message.success('删除成功!')