fix: recommend list

This commit is contained in:
zzc
2026-01-28 15:44:30 +08:00
parent b22bbb8f7c
commit e3edccbd65
2 changed files with 116 additions and 61 deletions

View File

@@ -45,3 +45,10 @@ export const viewRecord = async (data) => {
data,
});
};
export const getRecommendList = async (page = 1) => {
return request({
url: `/api/blessing/recommend/list?page=${page}`,
method: "get",
});
};