This commit is contained in:
zzc
2026-02-01 01:18:16 +08:00
parent 3e2e4638c2
commit 8ba947834a
2 changed files with 220 additions and 49 deletions

View File

@@ -29,3 +29,11 @@ export const getCardTemplateContentList = async () => {
method: "GET",
});
};
export const getCardTemplateTitleList = async (page = 1) => {
return request({
url: "/api/blessing/card/template-title/list?page=" + page,
method: "GET",
});
};