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); })