123456789101112131415161718192021222324252627282930313233343536 |
- // api 请求路径
- var PLATFROM_CONFIG = {};
- // PLATFROM_CONFIG.baseUrl = "http://172.16.120.104:8010/" //杨强本地
- // PLATFROM_CONFIG.baseUrl = "http://172.16.1.196:8010/" //超博本地
- console.log(window.location.host)
- if (window.location.host.indexOf("localhost") != -1) {
- PLATFROM_CONFIG.baseUrl = "https://qhome.usky.cn/fivapi/" //线上
- PLATFROM_CONFIG.fileUrl = "https://qhome.usky.cn/file/" //xlsx文件访问路径
- } else {
- PLATFROM_CONFIG.baseUrl = "https://wx.ewoogi.com/api/" //线上
- PLATFROM_CONFIG.fileUrl = "https://wx.ewoogi.com/file/" //xlsx文件访问路径
- }
- // 本地json文件请求路径
- PLATFROM_CONFIG.Interface = "/vuefiv/InterfaceReturn.json"
- PLATFROM_CONFIG.ione = "/vuefiv/1.json"
- // 当前站点 siteId 信息存储
- // var PLATFROM_SITEID = {};
- // PLATFROM_SITEID.id = 0;
- //alarming WEBSOCKET
- // let userInfo = window.localStorage.getItem("key");
- // var PLATFROM_WEBSOCKET = {};
- // PLATFROM_WEBSOCKET.wsUrl = `ws://172.16.120.246:8081/uskyWS?${userInfo}`
- //iframe 请求路径
- //http://www.thingjs.com/s/ef7ee6a73896c01bda77e679?params=105b0f77fd24654d4eebc434e9 初始路径http://172.16.120.246:9000/
- // var PLATFROM_IFRAME = {};
- // PLATFROM_IFRAME.iframeUrl = `http://www.thingjs.com/s/ef7ee6a73896c01bda77e679?params=105b0f77fd24654d4eebc434e9`
|