数组合并去重 this.newArr.push(...that.selectedMergePackListThree1) // 去重 const id = 'id' const r = that.newArr.reduce((all, next) => all.some((atom) => atom[id] == next[id]) ? all : [...all, next], []) that.newArr = r