This commit is contained in:
3321822538@qq.com 2024-12-04 17:32:25 +08:00
parent aa6d0c218b
commit 58ed1420fc
3 changed files with 274 additions and 186 deletions

View File

@ -1,6 +1,6 @@
const install = (Vue, vm) => {
Vue.prototype.$u.http.setConfig({
// baseUrl: 'http://192.168.2.100:3202',
// baseUrl: 'http://192.168.2.31:3202',
baseUrl: 'https://fen.ccttiot.com/prod-api',
loadingText: '努力加载中~',
loadingTime: 800,

View File

@ -16,11 +16,15 @@
</view>
<view class="tit">
{{obj.apiaryName == undefined ? '--' : obj.apiaryName}}-{{obj.name == undefined ? '--' : obj.name}}
<view class="sets">
<view class="tongbu" v-if="tbszflag" @click="btntbsz">
同步设置
</view>
<!-- <image @click="btnmenu" src="https://api.ccttiot.com/smartmeter/img/static/ulHBKvkXDfe9OIveIJKZ" mode=""></image> -->
<!-- 正在连接 -->
<image v-if="zcljflag" style="width: 184rpx;height: 40rpx;margin-right:20rpx" src="https://api.ccttiot.com/smartmeter/img/static/uYUoki4Tc56rzINzY2Ba" mode=""></image>
<image v-if="zcljflag" style="width: 180rpx;height: 40rpx;margin-right:20rpx" src="https://api.ccttiot.com/smartmeter/img/static/uYUoki4Tc56rzINzY2Ba" mode=""></image>
<!-- 连接成功 -->
<image v-if="ljcgflag" style="width: 40rpx;height: 40rpx;margin-right:20rpx" src="https://api.ccttiot.com/smartmeter/img/static/uhSqWj4f07z8oDMh0i8f" mode=""></image>
<!-- 未连接 -->
@ -141,7 +145,7 @@
src="https://api.ccttiot.com/smartmeter/img/static/uGGgEPbe8ryHspQPL2o8" mode=""></image>
<image style="height: 25rpx;" v-if="ver_data.bat < 20"
src="https://api.ccttiot.com/smartmeter/img/static/uIRhPmP5WUJaIg0nft9E" mode=""></image>
{{ver_data.bat == undefined ? '--' : ver_data.bat}}%
{{this.point == undefined ? '--' : this.point}}%
</view>
</view>
<view class="echarts_box" v-if="xnwd" @click="btnec(1)">
@ -271,7 +275,7 @@
当前 {{obj.volume / 1000 == 0 ? obj.volume : (obj.volume / 1000).toFixed(1)}}khz
</view>
<view class="top_cont" v-else>
当前 {{ver_data.MIC / 1000 == 0 ? ver_data.MIC : (ver_data.MIC / 1000).toFixed(1)}}khz
当前 {{(ver_data.MIC !== undefined && !isNaN(ver_data.MIC) && ver_data.MIC / 1000 === 0) ? ver_data.MIC : ((ver_data.MIC !== undefined && !isNaN(ver_data.MIC)) ? (ver_data.MIC / 1000).toFixed(1) : '--')}}khz
</view>
<view class="top_right">
<view style="width: 1rpx;">
@ -449,7 +453,11 @@
ver_data:{},
zcljflag:false,
ljcgflag:false,
wljflag:false
wljflag:false,
tbszflag:false,
shezhiobj:{},
scdeviceflag:true,
point:''
}
},
onLoad(option) {
@ -459,6 +467,7 @@
this.zcljflag = false
this.wljflag = false
this.ljcgflag = false
this.tbszflag = false
setTimeout(() => {
this.$refs.canvas1.init(this.initChart)
this.$refs.canvas2.init(this.initChart2)
@ -491,13 +500,36 @@
this.clearTimer()
},
methods: {
//
getinfo() {
this.$u.get(`farm/userSetting/my`).then(res => {
if (res.code == 200) {
this.shezhiobj = res.data
// miteInterval: '', //
// minPower: '', //%
// minHeat: '', //
// maxHeat: '', //
// maxFan: '', //
// minFan: '', //
// minCo2: '', //
// maxCo2: '', //
}
})
},
//
btntbsz(){
// xBlufi.notifySendCustomData({
//       customData: ""
// })
},
// id
getobj() {
this.$u.get(`/app/beehive/${this.beehiveId}`).then(res => {
if (res.code == 200) {
if(res.data.onlineStatus == 0){
this.mac = res.data.mac
this.Binddevice()
if(res.data.onlineStatus == 0){ //线
this.mac = res.data.mac
this.Binddevice() //
this.getinfo() //
}else{
//
this.startTimer()
@ -548,7 +580,20 @@
})
this.gettq()
} else {
} else if(res.code == 401){
uni.showModal({
title: '温馨提示',
content: '您还未登录,是否先去登录',
showCancel: true ,
success: function(res) {
if (res.confirm) {
uni.reLaunch({
url:'/pages/login/login'
})
}
}
})
}else{
uni.showToast({
title: res.msg,
icon: 'none',
@ -617,9 +662,11 @@
title: '温馨提示',
content: '暂未发现蜂箱设备,是否重新搜索连接',
showCancel: true ,
success:function(res) {
that.Binddevice()
}
success: function(res) {
if (res.confirm) {
that.Binddevice()
}
}
})
}else{
this.zcljflag = false
@ -669,6 +716,7 @@
this.zcljflag = false
this.wljflag = false
this.ljcgflag = true
this.tbszflag = true
{
xBlufi.notifyInitBleEsp32({
deviceId: options.data.deviceId
@ -693,7 +741,23 @@
obj[key] = !isNaN(value) ? parseFloat(value) : value;
})
this.ver_data = obj
console.log(this.ver_data,this.ver_data.bat)
if(this.ver_data.bat != '' || this.ver_data.bat != undefined){ //
this.point = (1 - (this.obj.modelMaxV - this.ver_data.bat) / (this.obj.modelMaxV -this.obj.modelMinV)) * 100
if(this.scdeviceflag == true){ //
let data = {
beehiveId:this.beehiveId,
sys:this.ver_data
}
this.$u.put(`app/beehive/btUpload`,data).then(res => {
if(res.code == 200){
this.scdeviceflag = false //
}else{
this.scdeviceflag = false //
}
})
}
}
console.log('收取到的蓝牙数据',this.ver_data,options.data)
break
case xBlufi.XBLUFI_TYPE.TYPE_INIT_ESP32_RESULT:
if (options.result) {
@ -930,196 +994,205 @@
},
//
btndow(num) {
if (num == 1) {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
      customData: "11clear_weight@"
 })
uni.showToast({
title: '去皮成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/clearWeight`).then(res => {
if (res.code == 200) {
const user = uni.getStorageSync('user')
if(this.obj.userId == user.userId){
if (num == 1) {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
      customData: "11clear_weight@"
 })
uni.showToast({
title: '去皮成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/clearWeight`).then(res => {
if (res.code == 200) {
uni.showToast({
title: '去皮成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
} else if (num == 2) {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
      customData: "11beep11@" + 10
 })
uni.showToast({
title: '响铃成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/buzzer`).then(res => {
if (res.code == 200) {
uni.showToast({
title: '响铃成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
} else if (num == 3) {
if (this.fskx == '关') {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: '11fan100@'
})
this.fskx = '开'
uni.showToast({
title: '去皮成功',
title: '风扇开启成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/fan?open=true`).then(res => {
if (res.code == 200) {
if (this.fskx == '关') {
this.fskx = '开'
} else {
this.fskx = '关'
}
uni.showToast({
title: '风扇开启成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
})
}
} else if (num == 2) {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
      customData: "11beep11@" + 10
 })
uni.showToast({
title: '响铃成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/buzzer`).then(res => {
if (res.code == 200) {
} else {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: "11fan0@"
})
this.fskx = '关'
uni.showToast({
title: '响铃成功',
title: '风扇关闭成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/fan?open=false`).then(res => {
if (res.code == 200) {
if (this.fskx == '关') {
this.fskx = '开'
} else {
this.fskx = '关'
}
uni.showToast({
title: '风扇关闭成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
})
}
} else if (num == 3) {
if (this.fskx == '关') {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: '11fan100@'
})
this.fskx = '开'
uni.showToast({
title: '风扇开启成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/fan?open=true`).then(res => {
if (res.code == 200) {
if (this.fskx == '关') {
this.fskx = '开'
} else {
this.fskx = '关'
}
uni.showToast({
title: '风扇开启成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
} else {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: "11fan0@"
})
this.fskx = '关'
uni.showToast({
title: '风扇关闭成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/fan?open=false`).then(res => {
if (res.code == 200) {
if (this.fskx == '关') {
this.fskx = '开'
} else if (num == 4) {
if (this.jrkg == '关') {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: "11hot100@"
})
this.jrkg = '开'
uni.showToast({
title: '加热开启成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/heat?open=true`).then(res => {
if (res.code == 200) {
if (this.jrkg == '关') {
this.jrkg = '开'
} else {
this.jrkg = '关'
}
uni.showToast({
title: '加热开启成功',
icon: 'success',
duration: 2000
})
} else {
this.fskx = '关'
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
uni.showToast({
title: '风扇关闭成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
}
} else if (num == 4) {
if (this.jrkg == '关') {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: "11hot100@"
})
this.jrkg = '开'
uni.showToast({
title: '加热开启成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/heat?open=true`).then(res => {
if (res.code == 200) {
if (this.jrkg == '关') {
this.jrkg = '开'
} else {
this.jrkg = '关'
}
uni.showToast({
title: '加热开启成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
} else {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: "11hot0@"
})
this.jrkg = '关'
uni.showToast({
title: '加热关闭成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/heat?open=false`).then(res => {
if (res.code == 200) {
if (this.jrkg == '关') {
this.jrkg = '开'
} else {
this.jrkg = '关'
}
uni.showToast({
title: '加热关闭成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
})
}
} else {
if(this.obj.onlineStatus == 0){
xBlufi.notifySendCustomData({
    customData: "11hot0@"
})
this.jrkg = '关'
uni.showToast({
title: '加热关闭成功',
icon: 'success',
duration: 2000
})
}else{
this.$u.put(`farm/beehive/iot/${this.beehiveId}/heat?open=false`).then(res => {
if (res.code == 200) {
if (this.jrkg == '关') {
this.jrkg = '开'
} else {
this.jrkg = '关'
}
uni.showToast({
title: '加热关闭成功',
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
}
}
}else{
uni.showToast({
title: '您没有权限操作',
icon: 'none',
duration: 2000
})
}
},
//
@ -2253,6 +2326,19 @@
color: #3D3D3D;
.sets {
position: relative;
display: flex;
align-items: center;
.tongbu{
width: 130rpx;
height: 40rpx;
border-radius: 4rpx;
text-align: center;
line-height: 40rpx;
font-size: 28rpx;
color: #fff;
background-color: #FFC107;
margin-right: 20rpx;
}
.menu {
padding: 20rpx;
position: absolute;

View File

@ -233,6 +233,8 @@
onShow() {
this.indextab = 0
this.pagesum = 1
this.curtitidx = 0
this.apiaryId = ''
this.miyuancolumns = []
this.getmiyuancolumns()
},