util.js 878 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. // 本地
  13. // publicUrl: 'http://10.16.4.19:80', //luyu
  14. // publicUrl2: 'http://10.16.4.19:80', //huyubo
  15. // publicUrl3: 'http://10.16.4.19:80', //zxq
  16. // publicSocketUrl: 'ws://10.16.4.19:80'
  17. // 本地
  18. // publicUrl: 'http://10.16.10.139:8090', //luyu
  19. // publicUrl2: 'http://10.16.10.139:8090', //huyubo
  20. // publicUrl3: 'http://10.16.10.139:8090', //zxq
  21. // publicSocketUrl: 'ws://10.16.10.139:8090'
  22. };
  23. module.exports = {
  24. globalData: globalData,
  25. }