index.ts 796 B

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