This commit is contained in:
戴育兵 2025-06-27 17:19:27 +08:00
commit eea1b146eb
2 changed files with 2 additions and 2 deletions

View File

@ -56,11 +56,11 @@ func BundleRouter(r *gin.RouterGroup) {
}
bundleAppRouteV2 := bundleAppRoute.Group("app/system/v2")
{
bundleAppRouteV2.POST("bundle-list", bundle.BundleListH5V2)
bundleAppRouteV2.POST("add-value/only", bundle.OnlyAddValueListByOrderNo)
}
bundleAppNoAuthRouteV2 := bundleAppNoAuthRoute.Group("app/system/v2")
{
bundleAppNoAuthRouteV2.POST("bundle-list", bundle.BundleListH5V2)
bundleAppNoAuthRouteV2.POST("bundle-detail", bundle.BundleDetailV2)
}

View File

@ -478,7 +478,7 @@ func CreateAntomPay(c *gin.Context) {
UserName: userInfo.Name,
UserTel: userInfo.TelNum,
BundleName: bundleName,
PayAmount: float32(req.ProductAllPrice),
PayAmount: float32(req.ProductAllPrice / 100), // 以后别用float存钱无语
CurrencyType: int32(currencyType),
PayStatus: 1,
UserID: userInfo.ID,