lt 6 luni în urmă
părinte
comite
a3a145606f

+ 3 - 1
RO_Server_Trunk-branch_0.1.39/roserver/gmweb/main.go

@@ -135,7 +135,9 @@ func main() {
 		//东南亚
 		r2 := router.Group("/v1")
 		r2.GET("/getUserList", msg.WebGmProcessUserListGet)
-		r2.GET("//check-uid", msg.WebGmProcessUserListGet)
+		r2.GET("//check-uid", msg.WebGmProcessUserListCheck)
+		r2.GET("//create-order", msg.WebGmProcessUserListCheck)
+		router.POST("/pay/hwDn", msg.WebPayHwRuNotify) // 海外东南亚
 
 		router.POST("/pay", msg.WebPayQuickNotify)                                 // SDKquick 畅梦nbSDK
 		router.POST("/pay/hwQucik", msg.WebPayHwQuickNotify)                       // 海外quick

+ 2 - 0
RO_Server_Trunk-branch_0.1.39/roserver/gmweb/msg/web_gmmsg.go

@@ -342,6 +342,8 @@ func WebGmProcessUserListCheck(c *gin.Context) {
 	callBackKey := "http://165.154.215.99:80"
 	if bfInfo.Serverid <= 10 {
 		callBackKey = callBackKey + "0" + strconv.Itoa(bfInfo.Serverid-1) + "/pay/hwDn"
+	} else if bfInfo.Serverid == 2 {
+		callBackKey = callBackKey + "86" + "/pay/hwDn"
 	} else {
 		callBackKey = callBackKey + strconv.Itoa(bfInfo.Serverid-1) + "/pay/hwDn"
 	}