util.js 856 B

12345678910111213141516171819202122232425
  1. const globalData = {
  2. // 正式服务器
  3. // publicUrl: 'https://sqdx.jiaxintech.com',
  4. // publicUrl2: 'https://sqdx.jiaxintech.com',
  5. // publicUrl3: 'https://sqdx.jiaxintech.com',
  6. // publicSocketUrl: 'wss://sqdx.jiaxintech.com'
  7. // 测试服务器
  8. publicUrl: 'https://sqdx.windd.cn',
  9. publicUrl2: 'https://sqdx.windd.cn',
  10. publicUrl3: 'https://sqdx.windd.cn',
  11. publicSocketUrl: 'wss://sqdx.windd.cn'
  12. // 本地huyubo
  13. // publicUrl: 'http://10.16.4.19:8090',
  14. // publicUrl2: 'http://10.16.4.19:8090',
  15. // publicUrl3: 'http://10.16.4.19:8090',
  16. // publicSocketUrl: 'ws://10.16.4.19:8090'
  17. // 本地luyu
  18. // publicUrl: 'http://10.16.10.139:8090',
  19. // publicUrl2: 'http://10.16.10.139:8090',
  20. // publicUrl3: 'http://10.16.10.139:8090',
  21. // publicSocketUrl: 'ws://10.16.10.139:8090'
  22. };
  23. module.exports = {
  24. globalData: globalData,
  25. }