-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.systemInfo.js
283 lines (255 loc) · 5.42 KB
/
app.systemInfo.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/**
* 程序配置信息
*/
class SystemInfo {
static sInstance;
static getInstance() {
if (!this.sInstance) {
this.sInstance = new SystemInfo();
}
return this.sInstance;
}
constructor() {
this.systemInfo = wx.getSystemInfoSync();
this.init();
}
init() {
this.headerInfo = {
Device: this.getBrand(), // 手机品牌
DeviceModel: this.getModel(), // 手机型号
AppLang: this.getLanguage(), // 设置的语言
PixelRatio: this.getPixelRatio(), // 设备像素比
Screen: `${this.getWindowWidth()}*${this.getWindowHeight()}`, // 可使用窗口宽 高
DeviceScreen: `${this.getScreenWidth()}*${this.getScreenHeight()}`, // 设备屏幕宽高
Width: this.getWindowWidth(),
Height: this.getWindowHeight(),
// statusBarHeight: this.getStatusBarHeight(),//todo 钉钉不支持
OSVer: this.getSystem(), // 操作系统版本
PT: this.getPlatform(), // 客户端平台 Android、iOS
Version: this.getVersion(), // 钉钉版本号
// SdkVer: this.getSDKVersion(), // 小程序客户端基础库版本
OSType: this.getOSType(),
Net: 0, // 网络类型,监听后更新
};
this.getNetworkTypeAsync().then(netType => {
this.headerInfo.Net = netType;
getApp().globalData.isWifi = netType == 1;
});
}
/**
* 系统信息(头部专用)
*/
getHeaderInfo() {
return this.headerInfo;
}
getSystemInfo() {
return this.systemInfo;
}
setSystemInfo(systemInfo) {
this.systemInfo = systemInfo;
this.init();
}
/**
* 获取当前手机品牌
*
* @returns
* @memberof SystemInfo
*/
getBrand() {
return this.getSystemInfo().brand;
}
/**
* 获取当前设备型号
*
* @returns
* @memberof SystemInfo
*/
getModel() {
return this.getSystemInfo().model;
}
/**
* 是否iPhoneX系列
*
* @returns
* @memberof SystemInfo
*/
isIPhoneX() {
const model = this.getModel()
return (model.indexOf('iPhone X') > -1 || model.indexOf('iPhone 11') > -1);
}
/**
* 获取当前用户使用语言环境
*
* @returns
* @memberof SystemInfo
*/
getLanguage() {
return this.getSystemInfo().language;
}
/**
* 获取用户设备像素比
*
* @returns
* @memberof SystemInfo
*/
getPixelRatio() {
return this.getSystemInfo().pixelRatio;
}
/**
* 设备宽
*
* @returns
* @memberof SystemInfo
*/
getWindowWidth() {
return this.getSystemInfo().windowWidth;
}
/**
* 设备高
*
* @returns
* @memberof SystemInfo
*/
getWindowHeight() {
return this.getSystemInfo().windowHeight;
}
/**
* 屏幕宽
*
* @returns
* @memberof SystemInfo
*/
getScreenWidth() {
return this.getSystemInfo().screenWidth;
}
/**
* 屏幕高
*
* @returns
* @memberof SystemInfo
*/
getScreenHeight() {
return this.getSystemInfo().screenHeight;
}
/**
* 当前电量百分比
*
* @returns
* @memberof SystemInfo
*/
getCurrentBattery() {
return this.getSystemInfo().currentBattery;
}
/**
* 设备操作系统版本
*
* @returns
* @memberof SystemInfo
*/
getSystem() {
return this.getSystemInfo().system;
}
/**
* 设备使用操作系统平台类型
*
* @returns
* @memberof SystemInfo
*/
getPlatform() {
return this.getSystemInfo().platform;
}
/**
* 钉钉版本号
*
* @returns
* @memberof SystemInfo
*/
getVersion() {
return this.getSystemInfo().version;
}
/**
* 小程序基础库版本
*
* @returns
* @memberof SystemInfo
*/
getSDKVersion() {
return wx.SDKVersion || '';
}
getStatusBarHeight() {
return this.getSystemInfo().statusBarHeight; //todo 钉钉暂不支持
}
/**
* 获取系统类型
*
* @returns
* @memberof SystemInfo
*/
getOSType() {
// const device = this.getModel().toLocaleLowerCase();
// if (device.indexOf('iphone') > -1 || device.indexOf('ipad') > -1 || device.indexOf('itouch') > -1 || device.indexOf('iwatch') > -1) {
// return 1; // iOS
// }
const pt = this.getPlatform();
return pt.toLocaleLowerCase() == 'android' ? 2 : 1;
}
/**
* 获取当前网络类型
*
* @returns
* @memberof SystemInfo
*/
getNetworkTypeAsync() {
let that = this;
return new Promise((resolve, reject) => {
let netType = 1;
wx.getNetworkType({
success(res) {
const { networkType } = res; // 返回网络类型2g,3g,4g,wifi
that.switchNetworkType(networkType);
resolve(netType);
},
fail(res) {
resolve(1);
}
});
});
}
switchNetworkType(networkType) {
let netType;
networkType = networkType.toLowerCase();
switch (networkType) {
case 'wifi':
netType = 1;
break;
case '2g':
netType = 2;
break;
case '3g':
netType = 3;
break;
case '4g':
netType = 4;
break;
case '5g':
netType = 5;
break;
case 'none':
case 'notreachable':
netType = 0;
break;
case 'unknown':
netType = 2;
break;
default:
netType = 1;
console.error('未知网络类型');
break;
}
this.headerInfo.Net = netType; //改变http请求头网络状态
return netType;
}
}
module.exports = {
SystemInfo
};