axios.post('/crm/customer/transData',{
    customer_id:'456',
    lastName:'Flintstone'
})
.then(function(res){
    console.log(55,res);
})
.catch(function(err){
    console.log(66,err);
});