This commit is contained in:
2026-03-17 23:41:49 +08:00
parent f0ecab4350
commit 69e96412ff
26 changed files with 662 additions and 903 deletions

View File

@@ -39,3 +39,8 @@ export const generateRedeemCodes = async (data) => {
export const exportRedeemCode = async (params) => {
return await request.download({ url: `/admin-api/muye/redeem-code/export-excel`, params })
}
// 导出兑换码纯文本(按批次号)
export const exportRedeemCodePlain = async (batchNo: string) => {
return await request.download({ url: `/admin-api/muye/redeem-code/export-plain`, params: { batchNo } })
}