//数组不去重
_this.incompleteData.map(e => e.order_id).join(',')
//数组去重var order_ids = _this.incompleteData.map(e => e.order_id).removeRepeat().join(',');