提交 118d0c25 authored 作者: 钟是志's avatar 钟是志

36147 云贵心理h5-我的预约咨询,新增提示无租户信息110108200409282257

上级 450be071
......@@ -7,7 +7,17 @@ import { isJSON } from '../authority';
// import { getUrlParams } from '@/H5Public/utils/handleString';
export const getSysCode = () => {
return window.specialImportantSystemConfig.sysCode || getYunShangGuiZhouSyStemConfig().sysCode;
return getYunShangGuiZhouSyStemConfig().sysCode || window.specialImportantSystemConfig.sysCode;
};
export const setYunShangGuiZhouSystemCode = (code) => {
const localStorageData = localStorage.getItem('antd-pro-systemConfig');
if(!localStorageData || !localStorageData.includes(code)){
localStorage.setItem('antd-pro-systemConfig', JSON.stringify({
code: code,
}));
}
};
// 查询系统配置
......@@ -41,8 +51,8 @@ export function getHeaders(url = '') {
const res = {
headers: {
Authorization: `bearer ${token}`,
sysCode: window.specialImportantSystemConfig.sysCode || getSysCode(),
tenant: window.specialImportantSystemConfig.tenant || getUserInfo().tenantCode || null,
sysCode: getSysCode(),
tenant: getUserInfo().tenantCode || window.specialImportantSystemConfig.tenant,
},
};
if(getIsBei_Dian() && window.location.origin.indexOf('localhost') > -1){
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论