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