From d599e0bbc429743c123efd21b0938baebbcff151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Mon, 6 Mar 2023 13:41:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/groupQrCodeInfo/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/system/groupQrCodeInfo/index.vue b/src/views/system/groupQrCodeInfo/index.vue index efc195c..d88b304 100644 --- a/src/views/system/groupQrCodeInfo/index.vue +++ b/src/views/system/groupQrCodeInfo/index.vue @@ -729,9 +729,10 @@ export default { /** 删除按钮操作 */ handleDelete(row) { console.log(row); - const ids = row.groupName || this.groupName; + const ids = row.id || this.ids; + const groupNames = row.groupName || this.groupNames; this.$modal - .confirm('确认删除群名称为"' + ids + '"的信息吗?') + .confirm('确认删除群名称为"' + groupNames + '"的信息吗?') .then(function() { return delGroupQrCodeInfo(ids); })