修复接口路径拼接问题
This commit is contained in:
@@ -825,7 +825,7 @@ namespace Home.Controllers
|
||||
[HttpGet]
|
||||
public async Task<IActionResult> Http()
|
||||
{
|
||||
ViewData["BaseUrl"] = m_Configuration["BaseInfoUrl"];
|
||||
ViewData["BaseUrl"] = m_Configuration["BackendUrl"];
|
||||
return View();
|
||||
}
|
||||
[HttpGet]
|
||||
|
||||
@@ -640,7 +640,7 @@ namespace Home.Controllers
|
||||
public IActionResult HttpPackageList()
|
||||
{
|
||||
var userId = this.Request.GetUserInfo().UserId;
|
||||
ViewData["BaseUrl"] = m_Configuration["BaseInfoUrl"];
|
||||
ViewData["BaseUrl"] = m_Configuration["BackendUrl"];
|
||||
return View();
|
||||
}
|
||||
[HttpGet]
|
||||
@@ -669,7 +669,7 @@ namespace Home.Controllers
|
||||
[UserAuth]
|
||||
public IActionResult HttpWhiteIpSU()
|
||||
{
|
||||
ViewData["BaseUrl"] = m_Configuration["BaseInfoUrl"];
|
||||
ViewData["BaseUrl"] = m_Configuration["BackendUrl"];
|
||||
return View();
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"TestCountLimit": 3,
|
||||
"Service_BaseUrl": "http://192.168.3.42:9000/",
|
||||
"BaseInfoUrl": "http://192.168.3.42:9000/",
|
||||
"Service_BaseUrl": "http://192.168.3.42:5000/",
|
||||
"BaseInfoUrl": "http://192.168.3.42:5000/",
|
||||
"BackendUrl": "http://192.168.3.42:9000/",
|
||||
"NotifyUrl": "http://192.168.3.42:9000/product/WxOrderCallBack",
|
||||
"MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=123456789;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",
|
||||
"Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1",
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"TestCountLimit": 3,
|
||||
"Service_BaseUrl": "https://www.juip.com/",
|
||||
"BaseInfoUrl": "https://www.juip.com/",
|
||||
"BackendUrl": "https://php-api.juip.com/",
|
||||
"NotifyUrl": "https://www.juip.com/product/WxOrderCallBack",
|
||||
"UNotifyUrl": "https://www.juip.com/user/WxOrderCallBack",
|
||||
"MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",
|
||||
|
||||
Reference in New Issue
Block a user