my_devices_frm.html
5.93 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
<!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:'',
bgColor: '#5B7FF8',
textColor: '#000',
textDown: '下拉刷新...',
textUp: '松开刷新...'
}, function(ret, err) {
getDeviceList();
api.refreshHeaderLoadDone();
});
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.toast({
msg: '请扫描添加设备',duration: 2000,location: 'bottom'
});
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);
$api.append($api.byId("device_panel"), addDomHtml);
}
}else {
api.toast({msg: '网络错误',duration: 2000,location: 'bottom'});
}
}
})
}
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: 20,
icon: '',
iconSize: 40,
titleSize: 14,
titleColor: '#000'
},
content: {
color: '#000',
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'
});
console.log(imei);
handleRemove(imei);
}
});
}
function handleRemove(imei) {
if (defaultImei == imei) {
api.toast({msg: '不可删除默认设备',duration: 2000,location: 'bottom'});
return;
}
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) {
console.log(JSON.stringify(ret));
if (ret) {
if (ret.code == 0) {
//删除设备同步推送
var ajpush = api.require('ajpush');
initAndListenPush(ajpush, false);
getDeviceList();
}
}
});
}
</script>
</html>