my_devices_frm.html
10.9 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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>设备列表frm</title>
<link rel="stylesheet" type="text/css" href="../../css/api.css"/>
<link rel="stylesheet" type="text/css" href="../../css/aui.css"/>
<link rel="stylesheet" type="text/css" href="../../css/utils/deviceList.css"/>
<style>
html,
body{
background-color: #F4F6F9;
}
</style>
</head>
<body>
<div class="device-panel" id="device_panel">
</div>
</body>
<script type="text/javascript" src="../../script/api.js"></script>
<script type="text/javascript" src="../../script/common.js"></script>
<script type="text/javascript">
var token;
var userId;
var defaultImei;
var idList = {};
apiready = function(){
api.parseTapmode();
token = $api.getStorage('userToken');
userId = $api.getStorage('userID');
defaultImei = $api.getStorage('defaultDevice');
/** 下拉刷新 */
api.setRefreshHeaderInfo({
loadingImg:'../../image/alpha0.png',
bgColor: '#5B7FF8',
textColor: 'rgba(255,255,255,0.5)',
textDown: '下拉刷新设备列表...',
textUp: '松开刷新...'
}, function(ret, err) {
getDeviceList();
api.refreshHeaderLoadDone();
});
api.addEventListener({
name: 'change_device_device_list'
}, function(ret, err){
if( ret ){
getDeviceList();
}
});
getDeviceList();
};
function getDeviceList() {
api.showProgress({
style: 'default',
animationType: 'fade',
title: '加载中...',
text: '',
modal: true
});
//---移除dom中的所有元素
var allDom = $api.domAll('.list-panel');
for (var i = 0; i < allDom.length; i++) {
$api.remove(allDom[i]);
}
idList = {}; //将id池子置空
//------------------
api.ajax({
url: HOST + '/iot_api/v1/app/bind_list?user_id='+userId,
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=utf-8',
'token': token
},
}, function(ret, err) {
api.hideProgress();
if (ret) {
if (ret.code == 0) {
var deviceList = ret.data.list;
if(!deviceList || deviceList.length==0){
$api.setStorage('devices', JSON.stringify([]));
api.alert({
title: '添加设备',
msg: '暂无设备,请先添加设备',
}, function(ret, err){
if( ret ){
openCanner(true);
}
});
return;
}else {
$api.setStorage('devices', JSON.stringify(deviceList));
}
for(var i in deviceList){
deviceList[i].storename == null ? deviceList[i].storename = '未知设备' : deviceList[i].storename = deviceList[i].storename;
idList[deviceList[i].imei] = deviceList[i].id;
var addDomHtml = addMyDeviceListHtml(deviceList[i].storename,deviceList[i].imei,deviceList[i].province + ' ' + deviceList[i].city,deviceList[i].online);
$api.append($api.byId("device_panel"), addDomHtml);
}
}else {
api.toast({msg: '网络错误',duration: 2000,location: 'bottom'});
}
}
})
}
function getCurDevicePwd(imei) {
api.showProgress({
style: 'default',
animationType: 'fade',
title: '获取中...',
text: '',
modal: true
});
api.ajax({
url: HOST + '/iot_api/v1/app/device?imei='+imei + '&user_id=' + userId,
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=utf-8',
'token': token
},
}, function(ret, err) {
api.hideProgress();
if (ret) {
var pwd = ret.data.device.password;
modifyPwd(imei,pwd);
}
})
}
function modifyPwd(imei,pwd) {
var dialogBox = api.require('dialogBox');
dialogBox.list({
tapClose: true,
texts: {
title: '设备当前密码:' + pwd,
enter: '确认'
},
listTitles: ['修改密码', '确认密码'],
styles: {
bg: '#fff',
corner: 2,
w: 300,
h: 230,
title: {
h: 50,
size: 18,
color: '#000'
},
list: {
h: 128,
row: 2,
title: {
marginL: 20,
size: 14,
color: '#696969'
},
content: {
marginL: 20,
size: 14,
color: '#000'
}
},
dividingLine: {
width: 1,
color:'rgba(240,245,255,1)',
},
enter: {
w: 50,
h: 50,
bg: '#FFFFFF',
color: '#5B7FF8',
size: 14
}
}
}, function(ret) {
if (ret.eventType == 'enter') {
var dialogBox = api.require('dialogBox');
dialogBox.close({
dialogName: 'list'
});
if (ret.amounts[0] != ret.amounts[1]) {
api.toast({msg: '两次密码不一致'});
return;
}
if (ret.amounts[0].length <= 6 && ret.amounts[0]!= '') {
var result = /^\d+$/.test(ret.amounts[0]);
if (result) {
api.ajax({
url: HOST+'/iot_api/v1/app/update_store_password',
method: 'post',
headers: {
'Content-Type': 'application/json;charset=utf-8',
'token': token
},
data: {
body: {
old_password: pwd,
new_password: ret.amounts[0],
imei: imei
}
}
}, function(ret, err) {
if (ret.code == 0) {
getDeviceList();
}
})
}else {
api.toast({msg: '请输入6位以内数字'});
return;
}
}else {
api.toast({msg: '设备密码不可为空'});
return;
}
}
});
}
function removeDevice(imei) {
var dialogBox = api.require('dialogBox');
dialogBox.alert({
texts: {
title: '确认移除设备',
content: '设备编号:' + imei,
leftBtnTitle: '取消',
rightBtnTitle: '确认'
},
styles: {
bg: '#fff',
w: 300,
corner:6,
title: {
marginT: 30,
icon: '',
iconSize: 40,
titleSize: 16,
titleColor: '#37394e'
},
content: {
color: '#818295',
size: 14
},
left: {
marginB: 7,
marginL: 20,
w: 130,
h: 35,
corner: 10,
bg: '#5B7FF8',
color: '#FFFFFF',
size: 12
},
right: {
marginB: 7,
marginL: 10,
w: 130,
h: 35,
corner: 10,
bg: '#5B7FF8',
color: '#FFFFFF',
size: 12
}
}
}, function(ret) {
if (ret.eventType == 'left') {
dialogBox.close({
dialogName: 'alert'
});
}else if (ret.eventType == 'right') {
dialogBox.close({
dialogName: 'alert'
});
handleRemove(imei);
}
});
}
function handleRemove(imei) {
if (defaultImei == imei) {
console.log(111);
var jsonLen = Object.keys(idList).length;
if (jsonLen == 1) {
$api.setStorage('defaultDevice', '');
}else {
for(var key in idList){
if (key != defaultImei) {
bindNewImei(key);
break;
}
// console.log(key+":"+idList[key]);//json对象中属性的名字:对象中属性的值
}
}
}
api.ajax({
url: HOST + '/iot_api/v1/app/unbind_device',
method: 'post',
headers: {
'Content-Type': 'application/json;charset=utf-8',
'token': token
},
data: {
body: {
id: idList[imei]
}
}
}, function(ret, err) {
if (ret) {
if (ret.code == 0) {
//删除设备同步推送
var ajpush = api.require('ajpush');
initAndListenPush(ajpush, false);
getDeviceList();
api.toast({
msg: '移除设备成功!',
duration: 2000,
location: 'bottom'
});
api.sendEvent({
name: 'change_device',
});
}
}
});
}
function bindNewImei(imei) {
api.ajax({
url: HOST + '/iot_api/v1/app/set_device_default',
method: 'post',
headers: {
'Content-Type': 'application/json;charset=utf-8',
'token': token
},
data: {
body: {
id: idList[imei]
}
}
}, function(ret, err) {
api.sendEvent({
name: 'change_device',
});
});
}
</script>
</html>