Initial project commit

This commit is contained in:
2026-05-09 16:40:29 +08:00
commit 02b0259a9e
267 changed files with 54891 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import request from "@/utils/request";
export const getMembershipPlans = () =>
request({ url: "/membership/plans", method: "GET" });
export const getMyMembership = () =>
request({ url: "/membership/me", method: "GET" });
export const purchaseMembership = (planId) =>
request({ url: "/membership/purchase", method: "POST", data: { plan_id: planId } });