fix: 修复https调用http问题

This commit is contained in:
橙子
2024-06-09 01:10:33 +08:00
parent 0789ebf9a9
commit a903b5e36c
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import request from "@/config/axios/service";
export function GetResult() {
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",
});
}