map遍历vue数组删除指定数据
remove(id){ var _this=this; this.Array.map(function(item,i){ if(item.id==id) _this.Array.splice(i,1); }) },