提交 812cbcf2 authored 作者: liqiufan's avatar liqiufan

更新函数

上级 73df820f
// 查询系统code
export function getSystemCode() {
let a = window.location.href.split('#');
if (a && a.length > 1) {
return a[1].split('/')[1];
}
return 'qxj';
}
\ No newline at end of file
// 查询系统配置
const getYunShangGuiZhouSyStemConfig = () => {
const localStorageData = localStorage.getItem('antd-pro-systemConfig');
if (localStorageData && isJSON(localStorageData)) {
let d = JSON.parse(localStorageData);
return {
sysCode: d.code,
logo: '',
name: d.name,
siteId: '5',
siteUrl: '',
};
}
};
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论