fix: greeting page

This commit is contained in:
zzc
2026-01-28 22:44:47 +08:00
parent 30063429ba
commit 154c038d1d
4 changed files with 526 additions and 0 deletions

View File

@@ -7,3 +7,10 @@ export const sendFeedback = async (data) => {
data,
});
};
export const getMyCard = async (page = 1) => {
return request({
url: "/api/blessing/my/card?page=" + page,
method: "GET",
});
};