| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- const h5Url='https://h5.bosszan.com'
- const ossUrl='https://yi-zhipin.oss-cn-hangzhou.aliyuncs.com/emoji/'
- let mobile=0;
- // #ifdef APP-PLUS
- mobile=1
- //#endif
- if (process.env.NODE_ENV !== 'development'||mobile) {
- //正式环境
- 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
- };
- }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://www.bosszan.com/wss/websocket/"; //联系客服
- const ROOTPATH3 = "ws://192.168.0.10:7155/sqx_fast/chatSocket/"; //聊天
- const ROOTPATH4 = "";
- module.exports = {
- APIHOST: ROOTPATH,
- APIHOST1: ROOTPATH1,
- WSHOST: ROOTPATH2,
- WSHOST1: ROOTPATH3,
- WSHOST4: ROOTPATH4,
- h5Url,
- ossUrl
-
- };
- }
|