diff --git a/api/daily.js b/api/daily.js index f9ce3ad..22be10b 100644 --- a/api/daily.js +++ b/api/daily.js @@ -21,3 +21,10 @@ export const saveDailyGreeting = async (data) => { data, }); }; + +export const getGreetingSceneList = async (exclude) => { + return request({ + url: `/api/blessing/greeting-scene/list?exclude=${exclude}`, + method: "GET", + }); +};