优化登录跳转至初始化公司页面问题

This commit is contained in:
java110 2020-05-31 14:08:49 +08:00
parent 51b73e65df
commit 63753940f0

View File

@ -51,13 +51,15 @@
function (json, res) {
if (res.status == 200) {
vc.component._loadCommunityInfo(_param);
}else{
}else if(res.status == 403){
vc.jumpToPage("/initCompany.html#/pages/common/company");
}else{
vc.toast(json);
}
}, function (e) {
console.log('请求失败处理',e);
//vc.jumpToPage(_param.url);
vc.jumpToPage("/initCompany.html#/pages/common/company");
vc.toast(e);
}
);
}