123456789101112131415161718192021222324 |
- /**
- * 系统配置类入口
- */
- const Config = {
- dev: {
- // BASE_API: 'https://172.16.36.211:8800', // http://172.16.36.211:8800
- BASE_API: 'https://park.lhzhtc.cn/luohe2_ee/api', // http://172.16.36.211:8800
- // BASE_API: 'http://localhost:16399/luohe2_ee/api'
- },
- build: {
- //服务地址及端口配置
- //BASE_API: 'https://park.lhzhtc.cn/luohe2_ee/api', // http://172.16.36.211:8800,
- BASE_API: 'http://192.168.0.81:16399/luohe2_ee/api'
- },
- applicationName: '漯河停车管理系统',
- }
- //方便运行时态对配置修改
- if (window && window.mungConfig) {
- Object.assign(Config, window.mungConfig)
- }
- export default Config
|