From 1865b1cfcd4f0511ccf8a5bdf767ff3b0d7c62c6 Mon Sep 17 00:00:00 2001 From: zzc <1761997216@qq.com> Date: Fri, 13 Mar 2026 02:56:05 +0800 Subject: [PATCH] fix: scene list --- api/card.js | 7 +++++++ api/daily.js | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/api/card.js b/api/card.js index cbddc9c..3f60e56 100644 --- a/api/card.js +++ b/api/card.js @@ -14,3 +14,10 @@ export const createCardShareToken = async (data) => { data, }); }; + +export const getGreetingSceneList = async (exclude) => { + return request({ + url: `/api/blessing/greeting-scene/list?exclude=${exclude}`, + method: "GET", + }); +}; diff --git a/api/daily.js b/api/daily.js index 22be10b..f9ce3ad 100644 --- a/api/daily.js +++ b/api/daily.js @@ -21,10 +21,3 @@ export const saveDailyGreeting = async (data) => { data, }); }; - -export const getGreetingSceneList = async (exclude) => { - return request({ - url: `/api/blessing/greeting-scene/list?exclude=${exclude}`, - method: "GET", - }); -};