feat(api): 添加广告模型状态字段并优化首页热销商品请求

- 在广告模型中新增 status 字段支持状态管理
- 首页热销商品接口请求新增 recommend 参数筛选推荐商品
This commit is contained in:
2026-06-21 10:23:19 +08:00
parent 8975197522
commit 0654fcdab8
2 changed files with 2 additions and 1 deletions

View File

@@ -67,7 +67,7 @@ const IndexPage: React.FC = () => {
// 获取热销商品
const fetchHotProducts = async () => {
try {
const res = await pageShopGoods({ page: 1, limit: 4, status: 0 })
const res = await pageShopGoods({ page: 1, limit: 4, status: 0, recommend: 1 })
if (res?.list) {
setHotProducts(res.list)
}