fix: daily page

This commit is contained in:
zzc
2026-03-02 15:32:37 +08:00
parent f11b48e50a
commit b9bec457a7
2 changed files with 31 additions and 13 deletions

View File

@@ -7,9 +7,9 @@ export const getDailyInfo = async () => {
});
};
export const getDailyRandomGreeting = async () => {
export const getDailyRandomGreeting = async (sceneId) => {
return request({
url: "/api/blessing/daily-greeting/random",
url: `/api/blessing/daily-greeting/random?sceneId=${sceneId}`,
method: "GET",
});
};