formdata
fly.interceptors.request.use((config,promise)=>{
config.headers["Content-Type"]="application/x-www-form-urlencoded";
return config;
})
fly.post("/public/checkWXMobileAndUserName",{username:this.user,mobile:this.phoneNum}).then(function(res){
console.log(res);
}).catch(err=>{
console.log(err);
})