This commit is contained in:
闫晓茹 2023-03-06 13:41:22 +08:00
parent d7bbbaa7ae
commit d599e0bbc4

View File

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