From 5db9dc5720f054d6a3109ab844412817102cfcb4 Mon Sep 17 00:00:00 2001 From: liangzai <2440983361@qq.com> Date: Tue, 3 Jun 2025 21:19:26 +0800 Subject: [PATCH] fix --- app/main/api/internal/service/payService.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/api/internal/service/payService.go b/app/main/api/internal/service/payService.go index 194d5cc..55691c8 100644 --- a/app/main/api/internal/service/payService.go +++ b/app/main/api/internal/service/payService.go @@ -128,7 +128,7 @@ func (p *PayService) CreateOrder(ctx context.Context, req *CreateOrderRequest) ( orderReq := &payment.AlipayCreateOrderRequest{ Amount: amount, Subject: product.ProductName, - Platform: payment.PlatformApp, + Platform: payment.PlatformH5, } resp, err := p.alipayService.CreateOrder(ctx, orderReq) if err != nil {