This commit is contained in:
3321822538@qq.com 2024-06-06 13:32:16 +08:00
parent d1cb83b943
commit 4fb815849f
2 changed files with 80 additions and 22 deletions

View File

@ -136,14 +136,14 @@
icon: 'none',
duration:2000
});
uni.hideLoading()
// uni.hideLoading()
} else {
xBlufi.notifyConnectBle({
isStart: true,
deviceId: this.deviceId,
name: this.name
});
uni.hideLoading()
// uni.hideLoading()
}
this.status = true
}, 2000)
@ -274,7 +274,7 @@
console.log('手机未连接网络');
}
}
});
})
},
@ -342,7 +342,7 @@
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
console.log("连接回调:" + JSON.stringify(options));
if (options.result) {
uni.hideLoading();
// uni.hideLoading();
// uni.showToast({
// title: '',
// icon: 'none'
@ -373,13 +373,20 @@
// })
}
}
}else{
uni.hideLoading()
uni.showToast({
title: '未连接到设备,请靠近设备尝试',
icon: 'none'
});
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
this.ver_data = this.parseCustomData(options.data)
// console.log("1", this.ver_data);
uni.hideLoading()
console.log("1收到设备发来的自定义数据结果", this.ver_data);
break;
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_STOP:
if (options.result) {
@ -452,24 +459,20 @@
//
// this.startBluetoothDevicesDiscovery()
this.statusflag = true
this.status = false
this.texts = '正在扫描蓝牙设备...'
setTimeout(() => {
this.statusflag = false
this.status = true
if (this.searching) {
xBlufi.notifyStartDiscoverBle({
'isStart': false
});
//
// if (this.devicesList.length == 0) {
// uni.showToast({
// title: ',',
// icon: 'none'
// });
// } else {
// this.texts = ''
// }
//
if (this.devicesList.length == 0) {
this.tishiflag = true
this.texts = '扫描完毕,暂无发现设备'
} else {
this.texts = '扫描到以下设备,请点击连接!'
}
} else {
xBlufi.notifyStartDiscoverBle({
'isStart': true
@ -477,8 +480,6 @@
}
}, 2000)
}
},
//

View File

@ -383,9 +383,7 @@
let expireTimeParts = expireTimeStr.split(" ");
let expireDateParts = expireTimeParts[0].split("-");
let expireTimePartsTime = expireTimeParts[1].split(":");
let expireDate = new Date(expireDateParts[0], expireDateParts[1] - 1, expireDateParts[2],
expireTimePartsTime[0], expireTimePartsTime[1], expireTimePartsTime[2]
); // 01
let expireDate = new Date(expireDateParts[0], expireDateParts[1] - 1, expireDateParts[2],expireTimePartsTime[0], expireTimePartsTime[1], expireTimePartsTime[2])
let now = new Date();
let differenceInMs = expireDate - now;
if (differenceInMs <= 0) {
@ -471,6 +469,37 @@
icon: 'none',
duration: 2000
})
// uni.showLoading({
// title: '...'
// })
// let vm = this; // this vm
// uni.getNetworkType({
// success(res) {
// if (res.networkType !== 'none') {
// uni.getConnectedBluetoothDevices({
// success(res) {
// console.log('', res);
// xBlufi.notifySendCustomData({
// customData: "time@" + 0
// });
// },
// fail(err) {
// console.error('', err);
// }
// })
// // vm.$u.get(`/app/bill/recharge/${vm.billNo}/bluetoothSuccess`).then(res => {
// // if(res.code == 200){
// // setTimeout(()=>{
// // uni.hideLoading()
// // uni.navigateBack()
// // },1000)
// // }
// // })
// } else {
// console.log('');
// }
// }
// })
}
})
} else if (num == 2) { //
@ -622,7 +651,35 @@
title: res.msg,
icon: 'success',
duration: 2000
})
})
// let vm = this; // this vm
// uni.getNetworkType({
// success(res) {
// if (res.networkType !== 'none') {
// uni.getConnectedBluetoothDevices({
// success(res) {
// console.log('', res);
// xBlufi.notifySendCustomData({
// customData: "time@" + vm.setMode + vm.cztime
// });
// },
// fail(err) {
// console.error('', err);
// }
// })
// // vm.$u.get(`/app/bill/recharge/${vm.billNo}/bluetoothSuccess`).then(res => {
// // if(res.code == 200){
// // setTimeout(()=>{
// // uni.hideLoading()
// // uni.navigateBack()
// // },1000)
// // }
// // })
// } else {
// console.log('');
// }
// }
// })
}
})
},