aaa
This commit is contained in:
parent
a9d108e752
commit
e5608a0ad1
|
@ -60,7 +60,8 @@
|
||||||
listobj: {},
|
listobj: {},
|
||||||
deviceId: '',
|
deviceId: '',
|
||||||
name: '',
|
name: '',
|
||||||
mac: ''
|
mac: '',
|
||||||
|
macs:''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
@ -183,6 +184,8 @@
|
||||||
let id = getQueryParam(decodedValue, 's')
|
let id = getQueryParam(decodedValue, 's')
|
||||||
this.$u.get(`/app/device/${id}/bySn`).then((res) => {
|
this.$u.get(`/app/device/${id}/bySn`).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
|
console.log(res,'resres');
|
||||||
|
this.macs = res.data.mac
|
||||||
this.qrResult = 'CTKG-' + res.data.mac
|
this.qrResult = 'CTKG-' + res.data.mac
|
||||||
xBlufi.initXBlufi(1);
|
xBlufi.initXBlufi(1);
|
||||||
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
||||||
|
@ -263,7 +266,7 @@
|
||||||
}
|
}
|
||||||
let data = {
|
let data = {
|
||||||
storeId: this.storeId,
|
storeId: this.storeId,
|
||||||
mac: this.mac
|
mac: this.macs
|
||||||
}
|
}
|
||||||
this.$u.put('/app/device/bind', data).then((res) => {
|
this.$u.put('/app/device/bind', data).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
|
@ -280,6 +283,13 @@
|
||||||
content: '你已绑定成功,需前去配网吗?',
|
content: '你已绑定成功,需前去配网吗?',
|
||||||
success: function(res) {
|
success: function(res) {
|
||||||
if (res.confirm) {
|
if (res.confirm) {
|
||||||
|
if(vm.mac == ''){
|
||||||
|
uni.showToast({
|
||||||
|
title: '当前设备不在线',
|
||||||
|
icon: 'none',
|
||||||
|
duration: 2000
|
||||||
|
});
|
||||||
|
}else{
|
||||||
let systemInfo = uni.getSystemInfoSync();
|
let systemInfo = uni.getSystemInfoSync();
|
||||||
if (systemInfo.platform === 'android') {
|
if (systemInfo.platform === 'android') {
|
||||||
// 当前设备是 Android
|
// 当前设备是 Android
|
||||||
|
@ -292,6 +302,9 @@
|
||||||
url: '/page_fenbao/device/wifivideo?deviceId=' +options.data.deviceId + '&name=' +options.data.name
|
url: '/page_fenbao/device/wifivideo?deviceId=' +options.data.deviceId + '&name=' +options.data.name
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
} else if (res.cancel) {
|
} else if (res.cancel) {
|
||||||
console.log('用户点击了取消');
|
console.log('用户点击了取消');
|
||||||
}
|
}
|
||||||
|
@ -300,7 +313,7 @@
|
||||||
|
|
||||||
} else if (res.code == 500) {
|
} else if (res.code == 500) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '该设备已被绑定',
|
title: res.msg,
|
||||||
icon: 'none',
|
icon: 'none',
|
||||||
duration: 2000
|
duration: 2000
|
||||||
});
|
});
|
||||||
|
|
|
@ -144,6 +144,12 @@
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}, 1000)
|
}, 1000)
|
||||||
|
}else{
|
||||||
|
uni.showToast({
|
||||||
|
title: res.msg,
|
||||||
|
icon: 'none',
|
||||||
|
duration: 1000,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,6 +72,12 @@
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.$u.toast(`删除成功`);
|
this.$u.toast(`删除成功`);
|
||||||
this.getlist()
|
this.getlist()
|
||||||
|
}else{
|
||||||
|
uni.showToast({
|
||||||
|
title: res.msg,
|
||||||
|
icon: 'none',
|
||||||
|
duration: 1000,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user