zhitong.yu
8 天以前 378d781e6f35f89652aa36e079a8b7fc44cea77e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ? 全局默认配置项
 
// 首页地址(默认)
export const HOME_URL: string = "/hxzk/screen";
 
// 登录页地址(默认)
export const LOGIN_URL: string = "/login";
 
// 默认主题颜色
export const DEFAULT_PRIMARY: string = "#409EFF";
 
// 路由白名单地址(本地存在的路由 staticRouter.ts 中)
export const ROUTER_WHITE_LIST: string[] = ["/500"];
 
// 高德地图 key
export const AMAP_MAP_KEY: string = "";
 
// 百度地图 key
export const BAIDU_MAP_KEY: string = "";