util.js 503 B

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