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

View File

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

View File

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