分销修改

This commit is contained in:
张松 2025-10-28 14:51:52 +08:00
parent 0ef7e2643e
commit 1166fca22f
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public class DistributionController {
*/ */
@GetMapping("/rechargeQrCode") @GetMapping("/rechargeQrCode")
public CzgResult<String> rechargeQrCode(@RequestParam BigDecimal amount) { public CzgResult<String> rechargeQrCode(@RequestParam BigDecimal amount) {
return CzgResult.success(appWxService.genCode("/pages/pay", "amount=" + amount + "&shopId=" + StpKit.USER.getShopId())); return CzgResult.success(appWxService.genCode("pages/pay", "amount=" + amount + "&shopId=" + StpKit.USER.getShopId()));
} }