This commit is contained in:
3321822538@qq.com 2024-06-07 17:05:52 +08:00
parent 8846de03b9
commit d7763b5923
5 changed files with 259 additions and 44 deletions

View File

@ -46,7 +46,7 @@
<view class="tongyi"> <view class="tongyi">
<u-checkbox-group> <u-checkbox-group>
<u-checkbox v-model="checked" @change="checkboxChange" active-color="#8883F0 ">我已同意 <u-checkbox v-model="checked" @change="checkboxChange" active-color="#8883F0 ">我已同意
</u-checkbox><text></text> </u-checkbox><text></text>
</u-checkbox-group> </u-checkbox-group>
<view class="zf" @click="btnzhifu"> <view class="zf" @click="btnzhifu">
立即支付 立即支付
@ -59,13 +59,13 @@
</template> </template>
<script> <script>
var xBlufi = require("@/page_components/blufi/xBlufi.js");
export default { export default {
data() { data() {
return { return {
indexactive: 0, indexactive: 0,
checked: false, checked: false,
deviceobj: {}, deviceobj: {},
deviceid: '',
timer: null, timer: null,
expireTimeStr: '', expireTimeStr: '',
zfobj: {}, zfobj: {},
@ -73,7 +73,13 @@
id: '', id: '',
czflag: false, czflag: false,
sytime: 0, sytime: 0,
datetime: 0 datetime: 0,
mac: '',
deviceId: '',
name: '',
ver_data: '',
devicesList: [],
onlineStatus: ''
} }
}, },
onLoad(option) { onLoad(option) {
@ -89,12 +95,31 @@
console.log(this.id) console.log(this.id)
this.startTimer() this.startTimer()
this.gettaoc() this.gettaoc()
this.getmac()
} else { } else {
this.id = option.id this.id = option.id
this.startTimer() this.startTimer()
this.gettaoc() this.gettaoc()
this.getmac()
} }
//
xBlufi.initXBlufi(1)
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': true
})
setTimeout(() => {
xBlufi.notifyStartDiscoverBle({
'isStart': false
})
if (this.devicesList.length > 0) {
xBlufi.notifyConnectBle({
isStart: true,
deviceId: this.deviceId,
name: this.name
})
}
}, 2000)
}, },
computed: { computed: {
@ -104,11 +129,41 @@
this.gethuidaio() this.gethuidaio()
} }
}, },
onUnload: function() {
if (this.timer) {
clearInterval(this.timer);
this.timer = null;
}
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': false
})
},
onHide() {
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': false
});
},
onBeforeUnmount() {
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': false
});
},
methods: { methods: {
startTimer() { startTimer() {
this.timer = setInterval(() => { this.timer = setInterval(() => {
this.gettaoc(); // 30 this.gettaoc();
}, 30000); // 30 }, 30000);
},
getmac() {
this.$u.get(`/app/device/${this.id}/bySn`).then((res) => {
if (res.code == 200) {
this.mac = 'CTKG-' + res.data.mac
this.onlineStatus = res.data.onlineStatus
}
})
}, },
gettaoc() { gettaoc() {
this.$u.get(`/app/device/${this.id}/withSuitList`).then((res) => { this.$u.get(`/app/device/${this.id}/withSuitList`).then((res) => {
@ -125,7 +180,7 @@
let differenceInMinutes = Math.floor(differenceInMs / (1000 * 60)); let differenceInMinutes = Math.floor(differenceInMs / (1000 * 60));
this.expireTimeStr = parseInt(differenceInMinutes) <= 0 ? '0' : differenceInMinutes this.expireTimeStr = parseInt(differenceInMinutes) <= 0 ? '0' : differenceInMinutes
} }
}); })
}, },
btnzhifu() { btnzhifu() {
if (this.checked == false) { if (this.checked == false) {
@ -133,18 +188,19 @@
title: '请勾选用户服务协议 !', title: '请勾选用户服务协议 !',
icon: 'none', icon: 'none',
duration: 1000 duration: 1000
}); })
} else { } else if (this.onlineStatus == 1) {
let that = this
let data = { let data = {
deviceNo: this.id, deviceNo: that.id,
suitId: this.zfobj.suitId, suitId: that.zfobj.suitId,
money: this.zfobj.price, money: that.zfobj.price,
suitTime: this.zfobj.value suitTime: that.zfobj.value
} }
this.$u.post('/app/bill/recharge', data).then((res) => { that.$u.post('/app/bill/recharge', data).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.orderno = res.data that.orderno = res.data
this.$u.get(`/app/pay/wx/${this.orderno}`).then((res) => { that.$u.get(`/app/pay/wx/${that.orderno}`).then((res) => {
if (res.code == 200) { if (res.code == 200) {
uni.requestPayment({ uni.requestPayment({
provider: 'wxpay', provider: 'wxpay',
@ -155,15 +211,17 @@
paySign: res.data.paySign, paySign: res.data.paySign,
success: (res) => { success: (res) => {
console.log(res, '支付成功'); console.log(res, '支付成功');
if (this.timer) { if (that.timer) {
clearInterval(this.timer); clearInterval(this
this.timer = null; .timer);
that.timer = null;
} }
// //
uni.reLaunch({ uni.reLaunch({
url: '/pages/shouye/index' url: '/pages/shouye/index'
}) })
uni.setStorageSync('time', this.expireTimeStr) uni.setStorageSync('time',
that.expireTimeStr)
}, },
fail(err) { fail(err) {
// //
@ -182,11 +240,92 @@
}) })
} }
}) })
} else {
if (this.ver_data == '') {
let that = this
uni.showModal({
title: '提示',
content: '支付的时候请靠近设备并打开蓝牙',
success: function(res) {
if (res.confirm) {
xBlufi.initXBlufi(1);
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': true
})
setTimeout(() => {
xBlufi.notifyStartDiscoverBle({
'isStart': false
})
if (this.devicesList.length > 0) {
xBlufi.notifyConnectBle({
isStart: true,
deviceId: this.deviceId,
name: this.name
})
}
}, 2000)
} else if (res.cancel) {
console.log('用户点击了取消');
}
}
})
}else{
let that = this
let data = {
deviceNo: that.id,
suitId: that.zfobj.suitId,
money: that.zfobj.price,
suitTime: that.zfobj.value
}
that.$u.post('/app/bill/recharge', data).then((res) => {
if (res.code == 200) {
that.orderno = res.data
that.$u.get(`/app/pay/wx/${that.orderno}`).then((res) => {
if (res.code == 200) {
uni.requestPayment({
provider: 'wxpay',
timeStamp: res.data.timeStamp,
nonceStr: res.data.nonceStr,
package: res.data.packageVal,
signType: res.data.signType,
paySign: res.data.paySign,
success: (res) => {
console.log(res, '支付成功');
if (that.timer) {
clearInterval(this
.timer);
that.timer = null;
}
//
uni.reLaunch({
url: '/pages/shouye/index'
})
uni.setStorageSync('time',
that.expireTimeStr)
},
fail(err) {
//
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
}
})
} else if (res.code == 401) {
uni.reLaunch({
url: '/pages/login/login'
})
}
})
}
} }
}, },
btnactive(item) { btnactive(item) {
this.sytime = item.value this.sytime = item.value
this.zfobj = item this.zfobj = item
@ -195,13 +334,89 @@
checkboxChange(e) { checkboxChange(e) {
this.checked = e.value this.checked = e.value
}, },
onUnload() {
//
if (this.timer) { funListenDeviceMsgEvent: function(options) {
clearInterval(this.timer); switch (options.type) {
this.timer = null; case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS:
if (options.result) {
let devicesarr = options.data
devicesarr.forEach(device => {
const mac = device.name.substring(4);
if (device.name == this.mac) {
this.deviceId = device.deviceId
this.name = device.name
this.devicesList.push(device);
let uniqueDevicesList = Array.from(new Set(this.devicesList));
// this.devicesList
this.devicesList = uniqueDevicesList;
}
});
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
console.log("连接回调:" + JSON.stringify(options));
if (options.result) {
{
xBlufi.notifyInitBleEsp32({
deviceId: this.deviceId
});
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvents);
this.deviceIds = options.data.deviceId
this.name = this.name
}
}
break;
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
this.ver_data = this.parseCustomData(options.data)
uni.hideLoading()
console.log("1收到设备发来的自定义数据结果", this.ver_data);
break;
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_STOP:
if (options.result) {
let uniqueDevicesList = Array.from(new Set(this.devicesList));
let filteredDevices = uniqueDevicesList.filter(device => device.name.substring(0, 4) ===
"CTKG");
// this.devicesList
this.devicesList = filteredDevices;
filteredDevices.forEach(device => {
// MAC MAC 6
let macFromName = device.name.substring(device.name.length - 12);
console.log(macFromName);
// this.mac
if (macFromName == this.mac) {
this.ishave = true;
}
})
}
this.searching = false
break;
} }
}, },
parseCustomData(data) {
// "@"
const dataArray = data.split('@');
//
const voltage = parseFloat(dataArray[0].substring(1)); // "V"
const switchState = dataArray[1].substring(1); // "S"
const current = parseFloat(dataArray[2].substring(1)); // "A"
const power = parseFloat(dataArray[4].substring(1)); // "P"
const remainingPower = parseFloat(dataArray[5].substring(1)); // "M"
const setMode = dataArray[6].substring(1); // "T"
//
return {
voltage,
switchState,
current,
power,
remainingPower,
setMode
};
},
} }
} }
</script> </script>
@ -210,9 +425,11 @@
/deep/ .u-title { /deep/ .u-title {
padding-bottom: 22rpx; padding-bottom: 22rpx;
} }
/deep/ .u-checkbox__label{
/deep/ .u-checkbox__label {
margin-right: 0 !important; margin-right: 0 !important;
} }
// /deep/ .u-icon__icon{ // /deep/ .u-icon__icon{
// padding-bottom: 41rpx; // padding-bottom: 41rpx;
// } // }

View File

@ -38,9 +38,9 @@
</view> </view>
</view> </view>
<view class="anniu" @click="Search"> <!-- <view class="anniu" @click="Search">
<button>重新扫描</button> <button>重新扫描</button>
</view> </view> -->
<!-- 加载状态 --> <!-- 加载状态 -->
<view class="containers" v-show="statusflag"> <view class="containers" v-show="statusflag">
<uni-section> <uni-section>
@ -122,7 +122,6 @@
xBlufi.notifyStartDiscoverBle({ xBlufi.notifyStartDiscoverBle({
'isStart': true 'isStart': true
}); });
// this.dl = ((this.orderinfo.deviceAmount / this.orderinfo.unitPrice)*1000).toFixed(2);
// //
setTimeout(() => { setTimeout(() => {
@ -135,14 +134,14 @@
title: '暂无发现对应设备,请靠近设备', title: '暂无发现对应设备,请靠近设备',
icon: 'none', icon: 'none',
duration:2000 duration:2000
}); })
// uni.hideLoading() // uni.hideLoading()
} else { } else {
xBlufi.notifyConnectBle({ xBlufi.notifyConnectBle({
isStart: true, isStart: true,
deviceId: this.deviceId, deviceId: this.deviceId,
name: this.name name: this.name
}); })
// uni.hideLoading() // uni.hideLoading()
} }
this.status = true this.status = true
@ -275,8 +274,6 @@
} }
} }
}) })
}, },
bind() { bind() {
if (this.ishave && this.isband) { if (this.ishave && this.isband) {
@ -449,14 +446,13 @@
}, },
// //
Search() { Search() {
this.bluthlist = []
this.devicesList = []
if (this.status) { if (this.status) {
xBlufi.notifyStartDiscoverBle({ xBlufi.notifyStartDiscoverBle({
'isStart': true 'isStart': true
}); });
// //
this.bluthlist = []
this.devicesList = []
//
// this.startBluetoothDevicesDiscovery() // this.startBluetoothDevicesDiscovery()
this.statusflag = true this.statusflag = true
this.texts = '正在扫描蓝牙设备...' this.texts = '正在扫描蓝牙设备...'

View File

@ -79,8 +79,9 @@
this.curtitidx = e.detail.current this.curtitidx = e.detail.current
}, },
getlist() { getlist() {
this.$u.get(`/app/device/list?storeId=${this.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`) // /app/device/listByStore/{storeId}?pageNum=1&pageSize=10
.then((res) => { this.$u.get(`/app/device/listByStore/${this.storeId}?pageNum=${this.pagenum}&pageSize=${this.pagesize}`)
.then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.total = res.total this.total = res.total
if (this.total > 0) { if (this.total > 0) {

View File

@ -462,7 +462,7 @@
} }
.bu { .bu {
margin-left: 32rpx; margin-left: 22rpx;
background: #D9D8FF; background: #D9D8FF;
color: #4D48B5; color: #4D48B5;
} }

View File

@ -145,13 +145,14 @@
content: `连接成功`, content: `连接成功`,
showCancel: false, showCancel: false,
success: function(res) { success: function(res) {
uni.switchTab({
url: '/pages/index/index'
})
// let ids = that.$store.state.user.deviceId // let ids = that.$store.state.user.deviceId
wx.closeBLEConnection({ wx.closeBLEConnection({
deviceId: this.objlist.deviceId, deviceId: this.objlist.deviceId,
}) })
uni.switchTab({
url: '/pages/index/index'
})
// getwifi(ids).then(res => { // getwifi(ids).then(res => {
// console.log(res); // console.log(res);
// uni.switchTab({ // uni.switchTab({