1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- window.__config = {
- /**
- * websocket地址
- */
- ws: 'ws://4dart.4dage.com:8013', //'ws://139.159.231.201:8011',
- /**
- * 静态资源地址
- */
- staticUrl: "",
- /**
- * 使用超时时间180s
- */
- timeout: 180,
- /**
- * 长时间无操作超时30s
- */
- noOperationTimeout: 30,
- /**
- * 画风切换间隔时间3s
- */
- switchInterval: 3,
- /**
- * logo链接
- */
- link:'',
- /**
- * 广告图地址
- */
- adsPath: [
- {
- link: '',
- image: 'static/images/adds/1.jpg'
- },
- {
- link: '',
- image: 'static/images/adds/2.jpg'
- },
- {
- link: '',
- image: 'static/images/adds/3.jpg'
- },
- {
- link: '',
- image: 'static/images/adds/4.jpg'
- },
- {
- link: '',
- image: 'static/images/adds/5.jpg'
- },
- {
- link: '',
- image: 'static/images/adds/6.jpg'
- }
- ]
- }
|