This commit is contained in:
@jyuhsin
2025-10-17 11:13:19 +08:00
parent a54d550796
commit 225ed25736
4 changed files with 26 additions and 7 deletions
@@ -524,10 +524,10 @@ layout("/layouts/v4/baseLayout.html"){
// 如果是"推荐应用"分类
if (this.activeCategory === "recommended") {
$.get("/platform/v4/apps/recommended")
$.get("/platform/home/listRecommendApp", { platform: "PC" })
.then((result) => {
if (result.code === 0) {
this.applications = result.data.list || []
this.applications = result.data || []
} else {
console.error("获取推荐应用失败:", result.msg)
}