2024-10-29 11:13:45 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="page">
|
2024-11-21 10:51:59 +08:00
|
|
|
|
<u-navbar title="设备录入" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='38' :custom-back="btns"
|
2024-10-29 11:13:45 +08:00
|
|
|
|
height='50'></u-navbar>
|
|
|
|
|
<view class="iptbox" @click="backpage()">
|
|
|
|
|
|
|
|
|
|
<input type="text" class="ips" v-model="mac" placeholder=" " style="margin-left: 32rpx;"
|
|
|
|
|
placeholder-class="my-placeholder" />
|
|
|
|
|
<view class="iconfont icon-xiangyou1 ">
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<view class="iptbox">
|
|
|
|
|
<view class="qrcode" @click="qrcode()">
|
|
|
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uy7BNwAMIKwvstqFnRhs" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
<input type="text" class="ips" v-model="storeId" placeholder="请扫描设备上的二维码" style="margin-left: 32rpx;"
|
|
|
|
|
placeholder-class="my-placeholder" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="iptbox" @click="show=true">
|
|
|
|
|
<!-- <view class="" v-if="hardwareInfo.version">
|
|
|
|
|
版本:{{hardwareInfo.version}} 版本id:{{hardwareInfo.id}}
|
|
|
|
|
</view> -->
|
|
|
|
|
<view class="">
|
|
|
|
|
{{banben}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tips" v-if="hardwareInfo.version">
|
|
|
|
|
版本介绍:{{hardwareInfo.instructions}}
|
|
|
|
|
</view>
|
|
|
|
|
<u-select v-model="show" :list="list" title='选择型号' @confirm="confirm"></u-select>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
<view class="lanyasj">
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
电池电压:<text v-if="ver_data.power">{{ver_data.power / 100}}/V</text> <text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
声音频率:<text v-if="ver_data.MIC">{{ver_data.MIC}}/Hz</text> <text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
内部温度:<text v-if="ver_data.temp_n">{{ver_data.temp_n}}/°C</text><text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
外部温度:<text v-if="ver_data.temp_w">{{ver_data.temp_w}}/°C</text><text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
内部湿度:<text v-if="ver_data.hp_n">{{ver_data.hp_n}}/%</text> <text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
外部湿度:<text v-if="ver_data.hp_w">{{ver_data.hp_w}}/%</text> <text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
当前重量:<text v-if="ver_data.weight">{{ver_data.weight}}/g</text> <text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="">
|
|
|
|
|
当天出勤:<text v-if="ver_data.out_day">{{ver_data.out_day}}/次</text> <text v-else>--</text>
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="imgs" style="margin-top: 130rpx;">
|
2024-10-29 11:13:45 +08:00
|
|
|
|
<image src="https://lxnapi.ccttiot.com/bike/img/static/u9wFJhLZGm7rboSDySV4" mode="" @click="qrcode()">
|
|
|
|
|
</image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btn" @click="bind()">
|
|
|
|
|
确认录入
|
|
|
|
|
</view>
|
|
|
|
|
<view class="bot_btn">
|
|
|
|
|
|
2025-02-25 14:35:28 +08:00
|
|
|
|
<view class="btn1" @click="Binddevice()">
|
2024-10-29 11:13:45 +08:00
|
|
|
|
蓝牙连接
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view>
|
2025-02-28 16:41:52 +08:00
|
|
|
|
<view class="btn1" @click="ring()" v-if="ver_data.temp_n">
|
|
|
|
|
去皮
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="btn1" @click="fengm()" v-if="ver_data != ''">
|
|
|
|
|
蜂鸣
|
|
|
|
|
</view> -->
|
2025-02-25 14:35:28 +08:00
|
|
|
|
<!-- <view class="btn1" @click="open()" v-if="carstause">
|
2024-10-29 11:13:45 +08:00
|
|
|
|
蓝牙开启
|
2025-02-25 14:35:28 +08:00
|
|
|
|
</view> -->
|
2024-10-29 11:13:45 +08:00
|
|
|
|
<!-- <view class="btn1" @click="reboot()" v-if="carstause">
|
|
|
|
|
设备重启
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btn1" @click="Binddevice()" v-if="isbands">
|
|
|
|
|
接口响铃
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
<u-mask :show="showbind" :z-index='100' />
|
|
|
|
|
<view class="tip_box" v-if="showbind">
|
|
|
|
|
<view class="top" v-if="showbind">
|
|
|
|
|
<view class="tip">
|
|
|
|
|
操作提示
|
|
|
|
|
</view>
|
|
|
|
|
<view class="ipt_box" style="justify-content: center;">
|
|
|
|
|
<view class="text" style="width: 80%;text-align: center;">
|
|
|
|
|
该mac号已有绑定sn码是否修改为当前sn码
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="bots">
|
|
|
|
|
<view class="bot_left" @click="showbind=false ">
|
|
|
|
|
取消
|
|
|
|
|
</view>
|
|
|
|
|
<view class="bot_right" @click="changeBind()">
|
|
|
|
|
确定
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="bot">
|
|
|
|
|
<view class="btn">
|
|
|
|
|
退款
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
const app = getApp();
|
2025-02-25 14:35:28 +08:00
|
|
|
|
var xBlufi = require("@/components/blufi/xBlufi.js");
|
2024-10-29 11:13:45 +08:00
|
|
|
|
let _this = null;
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
devicesList: [
|
|
|
|
|
// {name:'110000',
|
|
|
|
|
// mac:'11111'}
|
|
|
|
|
],
|
|
|
|
|
searching: false,
|
|
|
|
|
texts: '正在扫描蓝牙设备...',
|
|
|
|
|
btnflag: true,
|
|
|
|
|
tishiflag: false,
|
|
|
|
|
option: '',
|
|
|
|
|
bluthlist: [], //蓝牙数组
|
|
|
|
|
// status: 'loading',
|
|
|
|
|
statusflag: false,
|
|
|
|
|
Bluetoothmac: '',
|
|
|
|
|
mac: '',
|
|
|
|
|
ishave: false,
|
2025-02-25 14:35:28 +08:00
|
|
|
|
ver_data: {},
|
2024-10-29 11:13:45 +08:00
|
|
|
|
deviceInfoss: {},
|
|
|
|
|
gps: {},
|
|
|
|
|
isband: false,
|
|
|
|
|
// status: false,
|
|
|
|
|
deviceIds: '',
|
|
|
|
|
name: '',
|
|
|
|
|
orderinfo: {},
|
|
|
|
|
dl: 0,
|
|
|
|
|
czmoney: true,
|
|
|
|
|
iscz: true,
|
|
|
|
|
banben: '请点击选择版本',
|
|
|
|
|
modelId: '',
|
|
|
|
|
bgc: {
|
|
|
|
|
backgroundColor: "#FAFDFD",
|
|
|
|
|
},
|
|
|
|
|
sn: '',
|
|
|
|
|
carstause: false,
|
|
|
|
|
isbands: false,
|
|
|
|
|
show: false,
|
|
|
|
|
list: [],
|
|
|
|
|
hardwareInfo: {},
|
|
|
|
|
showbind: false,
|
|
|
|
|
storeId:'',
|
|
|
|
|
deviceId:''
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(e) {
|
|
|
|
|
console.log(e);
|
|
|
|
|
this.mac = e.mac
|
2025-02-25 14:35:28 +08:00
|
|
|
|
this.Binddevice()
|
2024-10-29 11:13:45 +08:00
|
|
|
|
this.isbands = false
|
|
|
|
|
this.carstause = false
|
|
|
|
|
if(uni.getStorageSync('banben') || uni.getStorageSync('banbenid')){
|
|
|
|
|
this.banben = uni.getStorageSync('banben')
|
|
|
|
|
this.modelId = uni.getStorageSync('banbenid')
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
this.getlist()
|
|
|
|
|
},
|
|
|
|
|
onUnload: function() {
|
|
|
|
|
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
|
|
|
|
|
wx.closeBLEConnection({
|
|
|
|
|
deviceId: this.deviceId,
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
onHide() {
|
|
|
|
|
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
|
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': false
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
onBeforeUnmount() {
|
|
|
|
|
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
|
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': false
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2025-02-28 16:41:52 +08:00
|
|
|
|
fengm(){
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "11beep@"
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
ring() {
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "11clear_weight@"
|
|
|
|
|
})
|
|
|
|
|
this.ver_data = {}
|
|
|
|
|
this.Binddevice()
|
|
|
|
|
},
|
2024-11-21 10:51:59 +08:00
|
|
|
|
btns(){
|
|
|
|
|
uni.reLaunch({
|
|
|
|
|
url:'/page_user/luru'
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-10-29 11:13:45 +08:00
|
|
|
|
confirm(e) {
|
|
|
|
|
// console.log(e);
|
|
|
|
|
this.banben = e[0].label
|
|
|
|
|
this.modelId = e[0].value
|
|
|
|
|
uni.setStorageSync('banben', this.banben)
|
|
|
|
|
uni.setStorageSync('banbenid', this.modelId)
|
|
|
|
|
},
|
|
|
|
|
getlist() {
|
|
|
|
|
this.$u.get('/app/model/admin/all').then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.Versionlist = res.data
|
|
|
|
|
const hardwareVersionId = uni.getStorageSync('hardwareVersionId');
|
|
|
|
|
|
|
|
|
|
if (hardwareVersionId) {
|
|
|
|
|
this.hardwareVersionId = hardwareVersionId
|
|
|
|
|
const matchedVersion = this.Versionlist.find(version => version.id ===
|
|
|
|
|
hardwareVersionId);
|
|
|
|
|
if (matchedVersion) {
|
|
|
|
|
this.hardwareInfo = matchedVersion;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.list = res.data.map(item => ({
|
|
|
|
|
value: item.modelId,
|
|
|
|
|
label: item.name
|
|
|
|
|
}));
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
send() {
|
|
|
|
|
this.$u.post('/app/device/ring?sn=' + this.sn).then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
changeBind() {
|
|
|
|
|
this.$u.post(`/appVerify/updateSn?sn=` + this.sn + '&mac=' + this.mac + '&hardwareVersionId=' + this
|
|
|
|
|
.hardwareVersionId).then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '绑定成功',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
uni.navigateBack({
|
|
|
|
|
delta: 1 // delta值为1时表示返回的页面层数
|
|
|
|
|
});
|
|
|
|
|
}, 2000)
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
bind() {
|
|
|
|
|
let data = {
|
|
|
|
|
sn: this.storeId,
|
|
|
|
|
mac: this.mac,
|
|
|
|
|
modelId: this.modelId
|
|
|
|
|
}
|
|
|
|
|
this.$u.post('/app/beehive/admin', data).then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '录入成功',
|
|
|
|
|
icon: 'success',
|
|
|
|
|
duration: 2000
|
|
|
|
|
})
|
|
|
|
|
wx.closeBLEConnection({
|
|
|
|
|
deviceId: this.deviceId,
|
|
|
|
|
})
|
|
|
|
|
setTimeout(()=>{
|
2024-11-21 10:51:59 +08:00
|
|
|
|
uni.reLaunch({
|
2024-10-29 11:13:45 +08:00
|
|
|
|
url:'/page_user/lurutwo?sn=' + this.storeId
|
|
|
|
|
})
|
|
|
|
|
},1500)
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 2000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
qrcode() {
|
|
|
|
|
uni.scanCode({
|
|
|
|
|
onlyFromCamera: true,
|
|
|
|
|
scanType: ['qrCode'],
|
|
|
|
|
success: res => {
|
|
|
|
|
function getQueryParam(url, paramName) {
|
|
|
|
|
let regex = new RegExp(`[?&]${paramName}=([^&]*)`)
|
|
|
|
|
let results = regex.exec(url);
|
|
|
|
|
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null
|
|
|
|
|
}
|
|
|
|
|
console.log(res,'000');
|
|
|
|
|
let sceneValue = res.result
|
|
|
|
|
let decodedValue = decodeURIComponent(sceneValue)
|
|
|
|
|
let id = getQueryParam(decodedValue, 's')
|
|
|
|
|
this.storeId = id
|
|
|
|
|
},
|
|
|
|
|
fail: err => {
|
|
|
|
|
console.error('扫描失败:', err)
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '扫描失败',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
Binddevice() {
|
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: '连接中..'
|
|
|
|
|
})
|
|
|
|
|
xBlufi.initXBlufi(1);
|
|
|
|
|
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': true
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 两秒后停止蓝牙搜索
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': false
|
|
|
|
|
});
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
if (this.devicesList.length == 0) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '暂无发现对应设备,请重试',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
let uniqueDevicesList = Array.from(new Set(this.devicesList));
|
|
|
|
|
|
|
|
|
|
// 将去重后的数组重新赋值给 this.devicesList
|
|
|
|
|
this.devicesList = uniqueDevicesList;
|
|
|
|
|
// console.log(this.devicesList,'this.devicesListthis.devicesList');
|
|
|
|
|
this.devicesList.forEach(device => {
|
|
|
|
|
// 从设备名称中提取 MAC 地址(假设 MAC 地址是设备名称的后6个字符)
|
|
|
|
|
let macFromName = device.name.substring(device.name.length - 12);
|
|
|
|
|
console.log(macFromName, 'macFromNamemacFromName');
|
|
|
|
|
// 与 this.mac 进行比较
|
|
|
|
|
if (macFromName == this.mac) {
|
|
|
|
|
// 如果相同,则将 this.ishave 设置为 true
|
|
|
|
|
console.log(device);
|
|
|
|
|
this.deviceInfoss = device
|
|
|
|
|
// this.ishave = true;
|
|
|
|
|
this.createBLEConnection(device)
|
|
|
|
|
|
|
|
|
|
console.log('对比正确1111111111');
|
|
|
|
|
} else {
|
|
|
|
|
console.log('对比错误');
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}, 200)
|
|
|
|
|
// 判断是否存在浇花器设备
|
|
|
|
|
|
|
|
|
|
// this.status = true
|
|
|
|
|
}, 2000)
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
reboot() {
|
|
|
|
|
let vm = this; // 将外部的 this 绑定到 vm 上
|
|
|
|
|
uni.getNetworkType({
|
|
|
|
|
success(res) {
|
|
|
|
|
if (res.networkType !== 'none') {
|
|
|
|
|
uni.getConnectedBluetoothDevices({
|
|
|
|
|
success(res) {
|
|
|
|
|
console.log('已连接的蓝牙设备信息:', res);
|
|
|
|
|
// vm.dl = (vm.orderinfo.deviceAmount / vm.orderinfo.unitPrice).toFixed(2); // 使用 vm 访问 Vue 实例的属性
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "11reboot"
|
|
|
|
|
});
|
|
|
|
|
// uni.hideLoading()
|
|
|
|
|
// vm.remakr()
|
|
|
|
|
},
|
|
|
|
|
fail(err) {
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
console.error('获取已连接蓝牙设备信息失败:', err);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
console.log('手机未连接网络');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
open() {
|
|
|
|
|
let vm = this; // 将外部的 this 绑定到 vm 上
|
|
|
|
|
uni.getNetworkType({
|
|
|
|
|
success(res) {
|
|
|
|
|
if (res.networkType !== 'none') {
|
|
|
|
|
uni.getConnectedBluetoothDevices({
|
|
|
|
|
success(res) {
|
|
|
|
|
console.log('已连接的蓝牙设备信息:', res);
|
|
|
|
|
// vm.dl = (vm.orderinfo.deviceAmount / vm.orderinfo.unitPrice).toFixed(2); // 使用 vm 访问 Vue 实例的属性
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "open"
|
|
|
|
|
});
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "11open"
|
|
|
|
|
});
|
|
|
|
|
// uni.hideLoading()
|
|
|
|
|
// vm.remakr()
|
|
|
|
|
},
|
|
|
|
|
fail(err) {
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
console.error('获取已连接蓝牙设备信息失败:', err);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
console.log('手机未连接网络');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
close() {
|
|
|
|
|
let vm = this; // 将外部的 this 绑定到 vm 上
|
|
|
|
|
uni.getNetworkType({
|
|
|
|
|
success(res) {
|
|
|
|
|
if (res.networkType !== 'none') {
|
|
|
|
|
uni.getConnectedBluetoothDevices({
|
|
|
|
|
success(res) {
|
|
|
|
|
console.log('已连接的蓝牙设备信息:', res);
|
|
|
|
|
// vm.dl = (vm.orderinfo.deviceAmount / vm.orderinfo.unitPrice).toFixed(2); // 使用 vm 访问 Vue 实例的属性
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "close"
|
|
|
|
|
});
|
|
|
|
|
xBlufi.notifySendCustomData({
|
|
|
|
|
customData: "11close"
|
|
|
|
|
});
|
|
|
|
|
// uni.hideLoading()
|
|
|
|
|
// vm.remakr()
|
|
|
|
|
},
|
|
|
|
|
fail(err) {
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
console.error('获取已连接蓝牙设备信息失败:', err);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
console.log('手机未连接网络');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
btnyc() {
|
|
|
|
|
this.titleflag = false
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 解析自定义数据
|
|
|
|
|
|
|
|
|
|
funListenDeviceMsgEvent: function(options) {
|
|
|
|
|
switch (options.type) {
|
|
|
|
|
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS:
|
|
|
|
|
if (options.result) {
|
|
|
|
|
let devicesarr = options.data
|
|
|
|
|
// this.devicesList = options.data
|
|
|
|
|
|
|
|
|
|
devicesarr.forEach(device => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.$u.get(`/app/device/${mac}/isBind`, data).then((res) => {
|
|
|
|
|
// if (res.data == false) {
|
|
|
|
|
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) {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '连接成功',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
}); {
|
|
|
|
|
xBlufi.notifyInitBleEsp32({
|
|
|
|
|
deviceId: options.data.deviceId
|
|
|
|
|
});
|
|
|
|
|
this.deviceIds = options.data.deviceId
|
|
|
|
|
this.name = options.data.name
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
|
2025-02-25 14:35:28 +08:00
|
|
|
|
// let data = '@power56@hp_n15@hp_w32@out_day1211@temp_n45@temp_w12@MIC230@weight1002'
|
|
|
|
|
this.ver_data = this.parseBluetoothData(options.data)
|
2024-10-29 11:13:45 +08:00
|
|
|
|
if (options.data) {
|
|
|
|
|
this.carstause = true
|
|
|
|
|
}
|
2025-02-25 14:35:28 +08:00
|
|
|
|
console.log("1收到设备发来的自定义数据结果:", options.data,this.ver_data);
|
2024-10-29 11:13:45 +08:00
|
|
|
|
break;
|
|
|
|
|
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_STOP:
|
|
|
|
|
if (options.result) {
|
2025-02-25 14:35:28 +08:00
|
|
|
|
|
2024-10-29 11:13:45 +08:00
|
|
|
|
} else {
|
2025-02-25 14:35:28 +08:00
|
|
|
|
|
2024-10-29 11:13:45 +08:00
|
|
|
|
}
|
|
|
|
|
this.searching = false
|
2025-02-25 14:35:28 +08:00
|
|
|
|
break
|
2024-10-29 11:13:45 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2025-02-28 16:41:52 +08:00
|
|
|
|
parseBluetoothData(data) {
|
|
|
|
|
const result = {};
|
|
|
|
|
const parts = data.split('@');
|
|
|
|
|
|
|
|
|
|
parts.forEach(part => {
|
|
|
|
|
if (part) {
|
|
|
|
|
// 使用正则表达式匹配键和值
|
|
|
|
|
const match = part.match(/^([a-zA-Z_]+):?([^@]+)/);
|
|
|
|
|
if (match) {
|
|
|
|
|
const key = match[1]; // 提取键
|
|
|
|
|
const value = match[2]; // 提取值
|
|
|
|
|
result[key] = value;
|
|
|
|
|
} else {
|
|
|
|
|
// 如果没有匹配到键值对,直接将该部分作为键,值为空
|
|
|
|
|
result[part] = '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return result;
|
|
|
|
|
},
|
2024-10-29 11:13:45 +08:00
|
|
|
|
//4、建立连接
|
|
|
|
|
createBLEConnection(e) {
|
2025-02-25 14:35:28 +08:00
|
|
|
|
console.log('调用了')
|
2024-10-29 11:13:45 +08:00
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': false
|
2025-02-25 14:35:28 +08:00
|
|
|
|
})
|
2024-10-29 11:13:45 +08:00
|
|
|
|
console.log(e, '蓝牙信息')
|
|
|
|
|
const deviceId = e.deviceId
|
|
|
|
|
this.deviceId = e.deviceId
|
|
|
|
|
this.Bluetoothmac = e.localName.substring(5) //从第七位开始截取 只取后面的mac号
|
2025-02-25 14:35:28 +08:00
|
|
|
|
console.log(this.Bluetoothmac, '11111')
|
2024-10-29 11:13:45 +08:00
|
|
|
|
let name = e.name;
|
2025-02-25 14:35:28 +08:00
|
|
|
|
console.log('点击了,蓝牙准备连接的deviceId:' + e.deviceId)
|
2024-10-29 11:13:45 +08:00
|
|
|
|
xBlufi.notifyConnectBle({
|
|
|
|
|
isStart: true,
|
|
|
|
|
deviceId: e.deviceId,
|
|
|
|
|
name
|
2025-02-25 14:35:28 +08:00
|
|
|
|
})
|
2024-10-29 11:13:45 +08:00
|
|
|
|
},
|
|
|
|
|
// 点击重新搜索
|
|
|
|
|
Search() {
|
|
|
|
|
if (this.status) {
|
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': true
|
|
|
|
|
});
|
|
|
|
|
// 重新搜索清空蓝牙数组
|
|
|
|
|
this.bluthlist = []
|
|
|
|
|
this.devicesList = []
|
|
|
|
|
// 重新搜索
|
|
|
|
|
// 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 = '扫描到以下设备,请点击连接!'
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
xBlufi.notifyStartDiscoverBle({
|
|
|
|
|
'isStart': true
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}, 2000)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 点击隐藏没有设备提示
|
|
|
|
|
btnhd() {
|
|
|
|
|
this.tishiflag = false
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
page {
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
background-color: #F3F3F3;
|
|
|
|
|
}
|
2025-02-25 14:35:28 +08:00
|
|
|
|
.lanyasj{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding:0 50rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
view{
|
|
|
|
|
width: 50%;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-10-29 11:13:45 +08:00
|
|
|
|
.page {
|
|
|
|
|
padding-bottom: 250rpx;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.tip_box {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 72rpx;
|
|
|
|
|
top: 628rpx;
|
|
|
|
|
width: 610rpx;
|
|
|
|
|
// height: 282rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 30rpx 30rpx 30rpx 30rpx;
|
|
|
|
|
z-index: 110;
|
|
|
|
|
padding-bottom: 100rpx;
|
|
|
|
|
|
|
|
|
|
.top {
|
|
|
|
|
padding: 52rpx 38rpx 42rpx 36rpx;
|
|
|
|
|
|
|
|
|
|
.ipt_box {
|
|
|
|
|
margin-top: 22rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
width: 350rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ipt {
|
|
|
|
|
padding: 10rpx 18rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-left: 26rpx;
|
|
|
|
|
width: 420rpx;
|
|
|
|
|
height: 64rpx;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
border: 2rpx solid #979797;
|
|
|
|
|
|
|
|
|
|
.input {
|
|
|
|
|
width: 80%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tip {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.txt {
|
|
|
|
|
margin-top: 32rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bots {
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
|
|
width: 610rpx;
|
|
|
|
|
// border-top: 2rpx solid #D8D8D8;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
// height: 100%;
|
|
|
|
|
bottom: -20rpx;
|
|
|
|
|
|
|
|
|
|
.bot_left {
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 30rpx;
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
background: #EEEEEE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bot_right {
|
|
|
|
|
border-radius: 0rpx 0rpx 30rpx 0rpx;
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: 86rpx;
|
|
|
|
|
background: #4C97E7;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
// border-left: 2rpx solid #D8D8D8;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
// color: #4C97E7;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.imgs {
|
|
|
|
|
margin-top: 50rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 400rpx;
|
|
|
|
|
height: 400rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
|
|
|
|
|
margin: 160rpx auto;
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
// position: fixed;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
// bottom: 100rpx;
|
|
|
|
|
// left: 46rpx;
|
|
|
|
|
width: 658rpx;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
background: #FFC107;
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tips {
|
|
|
|
|
margin: 28rpx auto 0;
|
|
|
|
|
width: 658rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.iptbox {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
padding: 22rpx;
|
|
|
|
|
margin: 28rpx auto 0;
|
|
|
|
|
width: 658rpx;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0, 0, 0, 0.15);
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
|
|
|
|
|
.qrcode {
|
|
|
|
|
padding-right: 20rpx;
|
|
|
|
|
border-right: 2rpx solid #D8D8D8;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 54rpx;
|
|
|
|
|
height: 54rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ips {
|
|
|
|
|
width: 630rpx;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 18rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-placeholder {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #808080;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bot_btn {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding: 40rpx 18rpx;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
// height: 330rpx;
|
|
|
|
|
background: #fff;
|
|
|
|
|
// background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
|
|
|
|
|
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
|
|
|
|
|
.btn:nth-child(4n) {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn1 {
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
margin-right: 12rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 164rpx;
|
|
|
|
|
height: 66rpx;
|
|
|
|
|
background: #E2F2FF;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
border: 2rpx solid #FFC107;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
</style>
|