Compare commits

..

No commits in common. "14d89110a40616a217ff1bc742acdd908262df11" and "46230f3bcbba24e1f5177ae8a4685b4c34abdf5b" have entirely different histories.

3 changed files with 3 additions and 10 deletions

View File

@ -222,7 +222,6 @@
//
isProperty() {
const is_property = this.$route.query.isProperty || false
console.log('is_property', is_property)
if(parseInt(is_property) === 1){
this.$store.commit("SET_IS_PROPERTY", !!is_property)
}

View File

@ -39,9 +39,7 @@ export function getWeChatOpenId(code) {
// 获取租户信息
export function fetchTenantInfo(id) {
return request.get('tenant/get?id=' + id, {}, {
noAuth: true
});
return request.get('tenant/get?id=' + id, {});
}
/**

View File

@ -12,12 +12,8 @@ const whiteListPage=['pages/users/privacy/index']
function prePage(){
let pages = getCurrentPages();
if(pages.length > 0){
let prePage = pages[pages.length - 1];
return prePage.route;
} else {
return ''
}
let prePage = pages[pages.length - 1];
return prePage.route;
}
export const toLogin = Debounce(_toLogin,800)