增加二期菜单以及综合模式评估页面

This commit is contained in:
zx
2026-04-28 15:47:19 +08:00
parent 6904f960b7
commit e5a0527861
23 changed files with 1013 additions and 46 deletions

View File

@@ -1,3 +1,4 @@
import { BASE_URL } from "../../api/request";
import { getToken } from "../until";
let ws = null;
@@ -27,7 +28,7 @@ function getWsBaseUrl() {
host = window.location.host;
} else {
// 非H5小程序/App需要你配置真实域名
host = "你的后端域名";
host = BASE_URL;
}
return `${protocol}//${host}${baseApi}`.replace(/\/$/, "");