feat(收藏功能): 为应用和版本添加收藏功能

- 在应用列表、详情页和版本列表中添加收藏按钮
- 使用localStorage存储用户收藏的应用数据
- 添加收藏/取消收藏的交互提示
- 统一调整搜索按钮的样式尺寸
This commit is contained in:
2025-07-08 09:31:27 +08:00
parent 51d6fdc6ee
commit 06c8f549d3
4 changed files with 22 additions and 2 deletions

View File

@@ -119,6 +119,7 @@ $resultApps = $conn->query($sqlApps);
</small>
</p>
<a href="app.php?id=<?php echo $app['id']; ?>" class="btn btn-primary">查看详情</a>
<button class="btn btn-outline-secondary mt-2" onclick="toggleFavorite(<?php echo $app['id']; ?>, '<?php echo addslashes(htmlspecialchars($app['name'])); ?>')">收藏</button>
</div>
</div>
</div>