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

24 lines
651 B

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'
config.baseUrl = 'http://127.0.0.1:8030';
// config.baseUrl = 'http://120.77.94.227:8030';
//现场
// 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;