config.js 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. window.__config = {
  2. /**
  3. * websocket地址
  4. */
  5. ws: 'ws://4dart.4dage.com:8013', //'ws://139.159.231.201:8011',
  6. /**
  7. * 静态资源地址
  8. */
  9. staticUrl: "",
  10. /**
  11. * 使用超时时间180s
  12. */
  13. timeout: 180,
  14. /**
  15. * 长时间无操作超时30s
  16. */
  17. noOperationTimeout: 30,
  18. /**
  19. * 画风切换间隔时间3s
  20. */
  21. switchInterval: 3,
  22. /**
  23. * logo链接
  24. */
  25. link:'',
  26. /**
  27. * 广告图地址
  28. */
  29. adsPath: [
  30. {
  31. link: '',
  32. image: 'static/images/adds/1.jpg'
  33. },
  34. {
  35. link: '',
  36. image: 'static/images/adds/2.jpg'
  37. },
  38. {
  39. link: '',
  40. image: 'static/images/adds/3.jpg'
  41. },
  42. {
  43. link: '',
  44. image: 'static/images/adds/4.jpg'
  45. },
  46. {
  47. link: '',
  48. image: 'static/images/adds/5.jpg'
  49. }
  50. ]
  51. }