util.js 583 B

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