feat: 仅保留混合模式并根据架构动态构建请求路径

- 删除 AppSidebar.vue 中的 StoreModeSwitcher 引入并删除该组件。
- 强制设置当前商店模式为 'hybrid'。
- 修复了因为 `window.apm_store.arch` 包含 `-store` 或 `-apm` 后缀导致路径替换异常的问题,现在会通过动态添加后缀来构建资源请求路径,以兼容 Spark Store 和 APM Store 服务器不同的资源组织结构。
This commit is contained in:
vmomenv
2026-03-12 01:39:00 +00:00
parent 16f7b62491
commit 70cab0182d
10 changed files with 48 additions and 169 deletions

View File

@@ -65,11 +65,8 @@ defineEmits<{
const computedImgUrl = (link: HomeLink) => {
if (!link.imgUrl) return "";
const arch = window.apm_store.arch || "amd64-apm";
const finalArch =
link.origin === "spark"
? arch.replace("-apm", "-store")
: arch.replace("-store", "-apm");
const arch = window.apm_store.arch || "amd64";
const finalArch = link.origin === "spark" ? `${arch}-store` : `${arch}-apm`;
return `${APM_STORE_BASE_URL}/${finalArch}${link.imgUrl}`;
};