1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- let VUE_APP_WS_URL = `ws://${location.hostname}?type=user`
- let openPlantGrass = '-openPlantGrass-'
- let httpApi = 'https://hongbaomi.com'
- let wsApi = 'wss://hongbaomi.com'
- module.exports = {
-
-
-
- HTTP_REQUEST_URL: httpApi,
- VUE_APP_WS_URL: `${wsApi}?type=user`,
-
-
-
- HTTP_REQUEST_URL: httpApi || window.location.protocol + "//" + window.location.host,
-
- VUE_APP_WS_URL: wsApi ? `${wsApi}?type=user` : VUE_APP_WS_URL,
-
- openPlantGrass: openPlantGrass,
- HEADER: {
- 'content-type': 'application/json',
-
- 'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5',
-
-
- 'Form-type': 'routine',
-
-
- 'Form-type': 'app',
-
- },
-
- TOKENNAME: 'X-Token',
-
- EXPIRE: 0,
- };
|