index.js 652 B

123456789101112131415161718192021222324
  1. /**
  2. * 系统配置类入口
  3. */
  4. const Config = {
  5. dev: {
  6. // BASE_API: 'https://172.16.36.211:8800', // http://172.16.36.211:8800
  7. BASE_API: 'https://park.lhzhtc.cn/luohe2_ee/api', // http://172.16.36.211:8800
  8. // BASE_API: 'http://localhost:16399/luohe2_ee/api'
  9. },
  10. build: {
  11. //服务地址及端口配置
  12. //BASE_API: 'https://park.lhzhtc.cn/luohe2_ee/api', // http://172.16.36.211:8800,
  13. BASE_API: 'http://192.168.0.81:16399/luohe2_ee/api'
  14. },
  15. applicationName: '漯河停车管理系统',
  16. }
  17. //方便运行时态对配置修改
  18. if (window && window.mungConfig) {
  19. Object.assign(Config, window.mungConfig)
  20. }
  21. export default Config