feat(api): 添加广告模型状态字段并优化首页热销商品请求
- 在广告模型中新增 status 字段支持状态管理 - 首页热销商品接口请求新增 recommend 参数筛选推荐商品
This commit is contained in:
@@ -55,5 +55,6 @@ export interface CmsAdParam extends PageParam {
|
|||||||
adType?: string;
|
adType?: string;
|
||||||
pageId?: number;
|
pageId?: number;
|
||||||
pageName?: string;
|
pageName?: string;
|
||||||
|
status?: number;
|
||||||
keywords?: string;
|
keywords?: string;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ const IndexPage: React.FC = () => {
|
|||||||
// 获取热销商品
|
// 获取热销商品
|
||||||
const fetchHotProducts = async () => {
|
const fetchHotProducts = async () => {
|
||||||
try {
|
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) {
|
if (res?.list) {
|
||||||
setHotProducts(res.list)
|
setHotProducts(res.list)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user