This commit is contained in:
3321822538@qq.com 2024-06-06 14:54:12 +08:00
parent 4fb815849f
commit 8846de03b9
3 changed files with 10 additions and 7 deletions

View File

@ -550,7 +550,7 @@
if (res.code == 200) {
uni.showToast({
title: '绑定成功',
icon: 'none',
icon: 'success',
duration: 2000
})
uni.hideLoading();
@ -649,7 +649,7 @@
}else if(res.code == 500){
uni.showToast({
title: res.msg,
icon: 'success',
icon: 'none',
duration: 2000
})
// let vm = this; // this vm

View File

@ -339,9 +339,9 @@
uni.navigateBack({
delta: 2 //
});
} else {
} else if(res.code == 500){
uni.showToast({
title: '解绑失败',
title: res.msg,
icon: 'none',
duration: 2000
});

View File

@ -70,9 +70,9 @@
onReady() {},
onUnload() {
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
wx.closeBLEConnection({
deviceId: this.objlist.deviceId,
})
// wx.closeBLEConnection({
// deviceId: this.objlist.deviceId,
// })
},
methods: {
content_wf() {
@ -146,6 +146,9 @@
showCancel: false,
success: function(res) {
// let ids = that.$store.state.user.deviceId
wx.closeBLEConnection({
deviceId: this.objlist.deviceId,
})
uni.switchTab({
url: '/pages/index/index'
})