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

13 lines
372 B

3 years ago
  1. let baseURL = '';
  2. // 是否在控制台显示接口请求日志,本地环境启用,打包环境禁用
  3. let showHttpLog = false;
  4. // 测试环境
  5. // 刘力
  6. baseURL = 'http://192.168.99.103:7000';
  7. // 许镇
  8. // baseURL = 'http://192.168.99.84:7000';
  9. // 正式环境
  10. // baseURL = 'https://yxkadmin.aiyxlib.com';
  11. module.exports = {
  12. baseURL: baseURL,
  13. showHttpLog: showHttpLog
  14. };