feat(home): 优化首页商品展示功能

- 添加 recommend 字段到商品模型定义
- 重构首页标签页逻辑,支持分类参数传递
- 实现动态商品列表加载,按标签分类获取数据
- 更新订水跳转链接指向新商品ID
- 优化标签页切换逻辑,使用键值对映射
- 添加错误处理机制,防止商品列表加载失败
This commit is contained in:
2026-02-03 20:06:50 +08:00
parent 945bf9af8d
commit cb17e48b03
4 changed files with 36 additions and 12 deletions

View File

@@ -146,4 +146,5 @@ export interface ShopGoodsParam extends PageParam {
isShow?: number;
stock?: number;
keywords?: string;
recommend?: number;
}