Files
pqs-9100_client/frontend/src/config/index.ts

22 lines
562 B
TypeScript
Raw Normal View History

2024-08-22 11:27:06 +08:00
// ? 全局默认配置项
// 首页地址(默认)
2025-03-08 16:01:41 +08:00
export const HOME_URL: string = "/home/index";
2025-03-07 16:26:14 +08:00
2025-03-08 16:01:41 +08:00
// export const HOME_URL: string = "/machine/controlSource";
2024-08-22 11:27:06 +08:00
// 登录页地址(默认)
export const LOGIN_URL: string = "/login";
// 默认主题颜色
export const DEFAULT_PRIMARY: string = "#003078";
// 路由白名单地址(本地存在的路由 staticRouter.ts 中)
export const ROUTER_WHITE_LIST: string[] = ["/500"];
// 高德地图 key
export const AMAP_MAP_KEY: string = "";
// 百度地图 key
export const BAIDU_MAP_KEY: string = "";