config.js 1.2 KB

1234567891011121314151617181920212223242526
  1. /**
  2. * 运行期配置(不进 webpack 打包,部署后可直接编辑 dist/config.js 热替换)
  3. *
  4. * 优先级:window.__APP_CONFIG__ > VUE_APP_* (.env) > 代码默认值
  5. *
  6. * 字段说明:
  7. * - brandTitle: 顶部大标题文字
  8. * - brandCompany: 登录页底部公司名
  9. * - brandLogoUrl: Logo 图片路径(相对站点根,默认指向 brand/logo.png)
  10. * - brandLoginTitleUrl: 登录页标题图(如不需要可置空字符串,会回退为文字标题)
  11. * - amapKey: 高德地图 Web 端 Key(部署前去高德控制台申请并加白名单)
  12. * - amapSecurityCode: 高德地图安全密钥 securityJsCode
  13. * - enableLoginBgVideo: 登录页背景视频开关(false 时退化为静态背景图)
  14. * - enableMainBgVideo: 主导航页背景视频开关(false 时退化为静态背景图)
  15. */
  16. window.__APP_CONFIG__ = {
  17. brandTitle: '交通信号控制平台—灵•智',
  18. brandCompany: '北京东土正创科技有限公司',
  19. brandLogoUrl: 'brand/logo.png',
  20. brandLoginTitleUrl: 'brand/login-title.png',
  21. amapKey: '',
  22. amapSecurityCode: '',
  23. enableLoginBgVideo: true,
  24. enableMainBgVideo: true
  25. };