123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module.exports = {
-
-
-
- HTTP_REQUEST_URL: `https://wx.junhailan.com`,
-
- VUE_APP_WS_URL: `wss://wx.junhailan.com/ws`,
-
-
-
-
- HTTP_REQUEST_URL: window.location.protocol + "//" + window.location.host,
-
- VUE_APP_WS_URL: `wss://${window.location.host}/ws`,
-
-
- HEADER: {
- 'content-type': 'application/json',
-
- 'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5',
-
-
- 'Form-type': 'routine',
-
-
- 'Form-type': 'app',
-
- },
-
- TOKENNAME: 'Authori-zation',
-
- EXPIRE: 0,
-
- LIMIT: 10
- }
|