SmartBeehive/page_user/lurutwo.vue
2024-11-13 18:01:04 +08:00

344 lines
7.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="">
<u-navbar title="设备控制" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='36'
height='50'></u-navbar>
<view class="title">
控制台
</view>
<view class="shuom">
请扫描设备上的二维码
</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="machao">
MAC号{{obj.mac == undefined ? '--' : obj.mac}}
</view>
<view class="machao">
总重量:{{(obj.totalWeight == undefined ? '--' : (Number(obj.totalWeight / 1000)).toFixed(2)) + 'kg'}}
</view>
<view class="machao">
箱内湿度:{{obj.innerHumidity == undefined ? '--' : obj.innerHumidity + '%'}}
</view>
<view class="machao">
箱外湿度:{{obj.outerHumidity == undefined ? '--' : obj.outerHumidity + '%'}}
</view>
<view class="machao">
箱外温度:{{obj.outerTemperature == undefined ? '--' : obj.outerTemperature + '%'}}
</view>
<view class="machao">
剩余电量:{{obj.surplusPower == undefined ? '--' : obj.surplusPower + '%'}}
</view>
<view class="machao">
箱内二氧化碳浓度:{{obj.innerCo2 == undefined ? '--' : obj.innerCo2 + '%'}}
</view>
<view class="machao">
进出量(只){{obj.ioCount == undefined ? '--' : obj.ioCount}}
</view>
<view class="machao">
频率:{{obj.volume == undefined ? '--' : obj.volume + 'hz'}}
</view>
<view class="machao">
网络:<text v-if="onlineStatus == '离线'" style="color: red;">离线</text> <text v-if="onlineStatus == '在线'" style="color: green;">在线</text>
</view>
<view class="machao">
最后在线时间:{{obj.lastOnlineTime == undefined ? '--' : obj.lastOnlineTime}}
</view>
<view class="list">
<view class="anniulist">
<view class="anniu" @click="btnkq">
开启蜂鸣
</view>
<view class="anniu" @click="btngbkq">
开启风扇
</view>
<view class="anniu" @click="btngb">
关闭风扇
</view>
<view class="anniu" @click="btnsx">
刷新
</view>
</view>
<view class="fanhui" @click="btnfh">
返回
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#FAFDFD",
},
storeId: '',
obj:{},
id:'',
onlineStatus:'--',
powerStatus:'--'
}
},
onLoad(options) {
if(options.sn){
this.storeId = options.sn
this.getsn()
}
},
// 分享到好友(会话)
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
methods: {
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
}
let sceneValue = res.result
let decodedValue = decodeURIComponent(sceneValue)
let id = getQueryParam(decodedValue, 's')
this.storeId = id
this.getsn()
},
fail: err => {
console.error('扫描失败:', err)
uni.showToast({
title: '扫描失败',
icon: 'none'
})
}
})
},
getsn(){
this.$u.get(`/app/beehive/admin/sn/${this.storeId}?refresh=true`).then(res => {
if (res.code == 200) {
this.obj = res.data
this.id = res.data.deviceId
if(res.data.onlineStatus == 0){
this.onlineStatus = '离线'
}else if(res.data.onlineStatus == 1){
this.onlineStatus = '在线'
}
if(res.data.powerStatus == 0){
this.powerStatus = '关闭'
}else if(res.data.powerStatus == 1){
this.powerStatus = '开启'
}
uni.showToast({
title: res.msg,
icon: 'success',
duration: 2000,
})
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000,
})
}
})
},
// 返回录入
btnfh(){
uni.navigateBack()
},
// 开启蜂鸣
btnkq(){
this.$u.put(`/app/beehive/admin/buzzer?sn=${this.storeId}`).then((res) => {
if (res.code == 200) {
setTimeout(()=>{
this.getsn()
},1000)
uni.showToast({
title: res.msg,
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
},
// 关闭风扇
btngb(){
this.$u.put(`/app/beehive/admin/fan?sn=${this.storeId}&open=false`).then((res) => {
if (res.code == 200) {
setTimeout(()=>{
this.btnsx()
},1000)
uni.showToast({
title: res.msg,
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
},
// 开启风扇
btngbkq(){
this.$u.put(`/app/beehive/admin/fan?sn=${this.storeId}&open=true`).then((res) => {
if (res.code == 200) {
setTimeout(()=>{
this.btnsx()
},1000)
uni.showToast({
title: res.msg,
icon: 'success',
duration: 2000
})
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
},
// 刷新
btnsx(){
this.getsn()
}
}
}
</script>
<style lang="less">
.list{
position: fixed;
bottom: 50rpx;
left: 50%;
transform: translateX(-50%);
.anniulist{
width: 658rpx;
margin: auto;
margin-top: 200rpx;
text-align: left;
font-size: 32rpx;
display: flex;
justify-content: space-between;
.anniu{
width: 30%;
height: 90rpx;
border-radius: 20rpx;
background-color:#ce9e10;
color: #fff;
font-size: 32rpx;
text-align: center;
line-height: 90rpx;
margin: 0 10rpx;
}
}
.fanhui{
width: 658rpx;
height: 90rpx;
border-radius: 20rpx;
background-color: #ce9e10;
color: #fff;
font-size: 32rpx;
text-align: center;
line-height: 90rpx;
margin: auto;
margin-top: 50rpx;
}
}
.machao{
width: 658rpx;
margin: auto;
margin-top: 20rpx;
text-align: left;
font-size: 32rpx;
}
.title{
font-size: 70rpx;
font-weight: 600;
text-align: left;
width: 658rpx;
margin: auto;
margin-top: 30rpx;
}
.shuom{
width: 658rpx;
margin: auto;
margin-top: 30rpx;
text-align: left;
font-size: 32rpx;
}
.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;
}
}
</style>