v3.7.2 版本代码合并

This commit is contained in:
JEECG
2024-12-09 15:10:46 +08:00
parent 64b29f47e0
commit b0c4194602
118 changed files with 12729 additions and 1596 deletions

View File

@ -140,6 +140,15 @@ const transform: AxiosTransform = {
config.params = undefined;
}
}
// update-begin--author:sunjianlei---date:220241019---for【JEECG作为乾坤子应用】作为乾坤子应用启动时拼接请求路径
if (globSetting.isQiankunMicro) {
if (config.url && config.url.startsWith('/')) {
config.url = globSetting.qiankunMicroAppEntry + config.url
}
}
// update-end--author:sunjianlei---date:220241019---for【JEECG作为乾坤子应用】作为乾坤子应用启动时拼接请求路径
return config;
},