| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- const h5Url='https://h5.bosszan.com'
- const ossUrl='https://yi-zhipin.oss-cn-hangzhou.aliyuncs.com/emoji/'
- let isProduction = true // 判断是否是生产环境
- if (isProduction) {
- //正式环境
- const ROOTPATH = "https://www.bosszan.com/sqx_fast";
- const ROOTPATH1 = "https://www.bosszan.com/sqx_fast";
- const ROOTPATH2 = "wss://www.bosszan.com/wss/websocket/"; //联系客服
- const ROOTPATH3 = "wss://www.bosszan.com/wss/chatSocket/" ; //聊天
- const ROOTPATH4 = "https://www.bosszan.com";
- const ROOTPATH5 = "https://yf327682.natappfree.cc";
- module.exports = {
- APIHOST: ROOTPATH,
- APIHOST1: ROOTPATH1,
- WSHOST: ROOTPATH2,
- WSHOST1: ROOTPATH3,
- WSHOST4: ROOTPATH4,
- h5Url,
- ossUrl,
- isProduction
- };
- }else{
- //测试环境
- // const ROOTPATH = "/sqx_fast";
- const ROOTPATH = "https://yizhizan.edccc.cn/sqx_fast";
- // const ROOTPATH1 = "/sqx_fast";
- const ROOTPATH1 = "https://yizhizan.edccc.cn/sqx_fast";
- const ROOTPATH2 = "wss://yizhizan.edccc.cn/wss/websocket/"; //联系客服
- const ROOTPATH3 = "wss://yizhizan.edccc.cn/wss/chatSocket/"; //聊天
- const ROOTPATH4 = "";
- module.exports = {
- APIHOST: ROOTPATH,
- APIHOST1: ROOTPATH1,
- WSHOST: ROOTPATH2,
- WSHOST1: ROOTPATH3,
- WSHOST4: ROOTPATH4,
- h5Url,
- ossUrl,
- isProduction
- };
- }
|