You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cy_pda/common/config.js

27 lines
750 B

2 years ago
const config = {
// 通用参数
productName: 'WMS',
}
// 设置后台接口服务的基础地址
// config.baseUrl = 'http://192.168.1.199:8040';
// config.baseUrl = 'http://192.168.0.105:8055';
// config.baseUrl = 'http://192.168.1.199:8030';
// config.baseUrl = 'http://120.77.94.227:8030'
2 years ago
config.baseUrl = 'http://127.0.0.1:8030';
// config.baseUrl = 'http://192.168.7.24:8030';
// config.baseUrl = 'http://192.168.229.120:8030';
2 years ago
// config.baseUrl = 'http://120.77.94.227:8030';
2 years ago
//现场
// config.baseUrl = 'http://192.168.1.199:8030';
// config.baseUrl = 'http://192.168.137.1:8030';
// 建议:打开下面注释,方便根据环境,自动设定服务地址
if (process.env.NODE_ENV === 'development') {
}
export default config;