const getAddress= new Promise((resolve, reject) => {
that.loadAddress(function(res){
resolve(res);
//return 传值给then
return res;
})
}).then((res)=>{
that.getPoject(res);