修改流程

This commit is contained in:
2026-06-17 23:29:04 +08:00
parent eeffab9a06
commit fbf40a1575
31 changed files with 3265 additions and 933 deletions
+12
View File
@@ -16,3 +16,15 @@ export async function appMarketActivityListPost({
...(options || {}),
});
}
/** 充值赠送活动 GET /app/marketActivity/rechargePromotion */
export async function appMarketActivityRechargePromotionGet({
options,
}: {
options?: CustomRequestOptions;
} = {}) {
return request<API.R>('/app/marketActivity/rechargePromotion', {
method: 'GET',
...(options || {}),
});
}