getinfo=()=>{
? ? ? ? new Promise(function(resolve,reject){
? ? ? ? ? ? axios.get("http://it.console.welfare.api-admin.suuyuu.cn/api/CorporateAccount/GetCorporateAccountInfo", {
? ? ? ? ? ? ? ? params: ''
? ? ? ? ? ? }).then((res)=>{
? ? ? ? ? ? ? ? if(res.code=="0"){
? ? ? ? ? ? ? ? ? ? resolve(res)
? ? ? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? ? ? reject("錯(cuò)誤了")
? ? ? ? ? ? ? ? }
? ? ? ? ? ? })
? ? ? ? }).then((res)=>{
? ? ? ? ? ? console.log(res)
? ? ? ? }).catch((msg)=>{
? ? ? ? ? ? console.log(msg)
? ? ? ? })
? ? }