智慧画屏客户端
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.
 
 
 
 
 

14 lines
372 B

let baseURL = '';
// 是否在控制台显示接口请求日志,本地环境启用,打包环境禁用
let showHttpLog = false;
// 测试环境
// 刘力
baseURL = 'http://192.168.99.103:7000';
// 许镇
// baseURL = 'http://192.168.99.84:7000';
// 正式环境
// baseURL = 'https://yxkadmin.aiyxlib.com';
module.exports = {
baseURL: baseURL,
showHttpLog: showHttpLog
};