比较newImageList和originalImageList
if( newImageList.sort().toString() !== originalImageList.sort().toString() ){
originalImageList.map(oItem => {
let flag = this.newImageList.every(newItem => oItem!==newItem)
if(flag){
console.log(oItem)
//oItem为一个不同值
}
})
}