index.ts 644 B

12345678910111213141516171819202122232425
  1. // ? 全局默认配置项
  2. // 首页地址(默认)
  3. export const HOME_URL: string = "/home/index";
  4. // 登录页地址(默认)
  5. export const LOGIN_URL: string = "/login";
  6. // 默认主题颜色
  7. export const DEFAULT_PRIMARY: string = "#6c8ff8";
  8. // 路由白名单地址(本地存在的路由 staticRouter.ts 中)
  9. export const ROUTER_WHITE_LIST: string[] = [
  10. "/500",
  11. "/store/privacyAgreement",
  12. "/store/storeUserPrivacyAgreement",
  13. "/store/storePrivacyAgreement",
  14. "/store/storeUserPrivacyAgreements"
  15. ];
  16. // 高德地图 key
  17. export const AMAP_MAP_KEY: string = "";
  18. // 百度地图 key
  19. export const BAIDU_MAP_KEY: string = "";