fix: 修复https调用http问题
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<Version>1.0.0</Version>
|
<Version>1.1.0</Version>
|
||||||
<Authors>橙子老哥</Authors>
|
<Authors>橙子老哥</Authors>
|
||||||
<Description>yi-framework框架配套工具</Description>
|
<Description>yi-framework框架配套工具</Description>
|
||||||
<PackageProjectUrl>https://ccnetcore.com</PackageProjectUrl>
|
<PackageProjectUrl>https://ccnetcore.com</PackageProjectUrl>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ namespace Yi.Abp.Tool
|
|||||||
Configure<AbpRemoteServiceOptions>(options =>
|
Configure<AbpRemoteServiceOptions>(options =>
|
||||||
{
|
{
|
||||||
options.RemoteServices.Default =
|
options.RemoteServices.Default =
|
||||||
new RemoteServiceConfiguration("http://ccnetcore.com:19002");
|
new RemoteServiceConfiguration("https://ccnetcore.com:19009");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import request from "@/config/axios/service";
|
import request from "@/config/axios/service";
|
||||||
export function GetResult() {
|
export function GetResult() {
|
||||||
return request({
|
return request({
|
||||||
url: `http://ccnetcore.com:19002/api/app/nue-get-info/info`,
|
url: `https://ccnetcore.com:19009/api/app/nue-get-info/info`,
|
||||||
method: "get",
|
method: "get",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user