fix: scene list

This commit is contained in:
zzc
2026-03-13 02:56:05 +08:00
parent edfa8a2d3a
commit 1865b1cfcd
2 changed files with 7 additions and 7 deletions

View File

@@ -14,3 +14,10 @@ export const createCardShareToken = async (data) => {
data, data,
}); });
}; };
export const getGreetingSceneList = async (exclude) => {
return request({
url: `/api/blessing/greeting-scene/list?exclude=${exclude}`,
method: "GET",
});
};

View File

@@ -21,10 +21,3 @@ export const saveDailyGreeting = async (data) => {
data, data,
}); });
}; };
export const getGreetingSceneList = async (exclude) => {
return request({
url: `/api/blessing/greeting-scene/list?exclude=${exclude}`,
method: "GET",
});
};