baseUrl.js
1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import {
getTabbarHeight
} from "@/plugins/utils";
/**
* 服务端配置项
* baseUrl 服务端 api地址
* baseDrawioUrl 组态地址 注意端口
* baseWebSocketUrl 服务端 websocket地址
* socketPrefix websocket前缀 ((https, wss),( http, ws))
*/
const baseUrl = "http://222.180.200.114:48080/api";
const baseVisualUrl = "http://192.168.1.10:8083"
const baseDrawioUrl = "http://222.180.200.114:9527/thingskit-scada";
const baseWebSocketUrl = "222.180.200.114:48080";
const socketPrefix = "ws";
let systemInfo = {
...getTabbarHeight(),
// #ifdef MP-ALIPAY
navBarH: uni.getSystemInfoSync().statusBarHeight +
uni.getSystemInfoSync().titleBarHeight, //菜单栏总高度--单位px
titleBarHeight: uni.getSystemInfoSync().titleBarHeight, //标题栏高度--单位px
// #endif
// #ifndef MP-ALIPAY
navBarH: uni.getSystemInfoSync().statusBarHeight + 44, //菜单栏总高度--单位px
titleBarHeight: 44, //标题栏高度--单位px
// #endif
};
// 平台
// #ifdef MP-WEIXIN
systemInfo.platform = "weixin";
// #endif
// #ifdef MP-ALIPAY
systemInfo.platform = "alipay";
// #endif
// #ifdef MP-TOUTIAO
systemInfo.platform = "toutiao";
// #endif
// #ifdef APP-PLUS
systemInfo.platform = "plus";
// #endif
const courtConfig = {
publicAppId: "", //公众号appId
baseUrl, //服务端地址
baseVisualUrl,//服务端看板地址
baseDrawioUrl, //服务端组态地址
baseWebSocketUrl, //服务端websocket地址
socketPrefix, //websocket前缀
systemInfo: systemInfo, //系统信息
mapData: {
key: "", //地图key
sk: "",
},
};
export default Object.assign({}, courtConfig);