SmartBeehive/pages/Beehive.vue

541 lines
15 KiB
Vue
Raw Normal View History

2024-06-11 18:02:55 +08:00
<template>
<view class="page">
2024-07-04 18:02:46 +08:00
<u-navbar :is-back="false" title="蜂箱" :border-bottom="false" :background="bgc" title-color='#3D3D3D '
2024-06-21 18:04:01 +08:00
title-size='36' height='45' id="navbar">
2024-06-11 18:02:55 +08:00
</u-navbar>
2024-06-21 18:04:01 +08:00
<view class="top_cont">
<view class="top_box">
<view class="search">
<image src="https://api.ccttiot.com/smartmeter/img/static/um5GxgXufKY8IK2qkaWR" mode=""></image>
<view class="search_center">
2024-07-03 18:03:01 +08:00
<input type="text" class="ips" @confirm="changserch" v-model="code" placeholder="请输入蜂箱编号"
2024-06-21 18:04:01 +08:00
placeholder-class="my-placeholder" />
</view>
</view>
<view class="add" @click="addApiary()">
<image src="https://api.ccttiot.com/smartmeter/img/static/uR30yYn3IsHDu5qWV0ML" mode=""></image>
</view>
</view>
<view class="tabbar">
2024-07-08 18:16:58 +08:00
<view class="cont" v-for="(item,index) in miyuancolumns" :key="index" @click="btntab(index,item)">
2024-10-28 18:00:49 +08:00
{{item.label == null ? '--' : item.label}} <text v-if="item.count != '-1'">({{item.count == null ? '0' : item.count}})</text>
2024-07-08 18:16:58 +08:00
<view class="gl" :id="indextab == index ? 'active' : ''"></view>
2024-06-21 18:04:01 +08:00
</view>
</view>
</view>
2024-07-03 18:03:01 +08:00
<view class="no_cont" v-if="logoflag">
<view class="img">
<image src="https://api.ccttiot.com/smartmeter/img/static/uUZ3MF84e3bKgwAei8Rz" mode=""></image>
</view>
<view class="txt">
当前还没有添加蜂箱哦
</view>
</view>
<view class="warp_box" v-else>
2024-06-21 18:04:01 +08:00
<swiper class="swiper" :style="{ height: swiperHeight + 'rpx' }" :current='curtitidx'
@change="swiperchange">
<swiper-item >
2024-07-01 18:03:05 +08:00
<scroll-view class="swiper-item" scroll-y="true" @scrolltolower="loadMore">
2024-07-04 18:02:46 +08:00
<!-- <view v-if="total == 0" style="width: 100%;margin: auto;margin-top: 200rpx;text-align: center;color: #ccc;">该蜂场没有蜂箱...</view> -->
<view class="card_box" v-for="(item,index) in fxlist" :key="index" @click="todetail(item.beehiveId)">
2024-06-21 18:04:01 +08:00
<view class="card">
<view class="card_top">
<view class="name">
2024-10-10 17:03:59 +08:00
{{item.name == null ? '--' : item.name}}
2024-06-21 18:04:01 +08:00
</view>
2024-07-03 18:03:01 +08:00
<view class="online" :id="item.onlineStatus == 0 ? 'status' : ''">
2024-07-01 18:03:05 +08:00
{{item.onlineStatus == 0 ? '离线' : '在线'}}
2024-06-21 18:04:01 +08:00
</view>
2024-07-05 20:00:41 +08:00
<!-- <view class="type">
2024-06-21 18:04:01 +08:00
已认养
2024-07-05 20:00:41 +08:00
</view> -->
2024-06-21 18:04:01 +08:00
<view class="ele">
2024-07-12 18:14:24 +08:00
<image style="height: 25rpx;" v-if="item.surplusPowerPoint <= 100 && item.surplusPowerPoint >= 80" src="https://api.ccttiot.com/smartmeter/img/static/uWbKPMvIuFZjzviEJjmP" mode=""></image>
<image style="height: 25rpx;" v-if="item.surplusPowerPoint < 80 && item.surplusPowerPoint >= 50" src="https://api.ccttiot.com/smartmeter/img/static/u0mCXpSrvcROLCMsahNh" mode=""></image>
<image style="height: 25rpx;" v-if="item.surplusPowerPoint < 50 && item.surplusPowerPoint >= 20" src="https://api.ccttiot.com/smartmeter/img/static/uGGgEPbe8ryHspQPL2o8" mode=""></image>
<image style="height: 25rpx;" v-if="item.surplusPowerPoint < 20" src="https://api.ccttiot.com/smartmeter/img/static/uIRhPmP5WUJaIg0nft9E" mode=""></image>
2024-10-10 17:03:59 +08:00
{{item.surplusPowerPoint == null ? '--' : item.surplusPowerPoint}}%
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="card_top" style="margin-top: 20rpx;">
<view class="txt">
2024-10-10 17:03:59 +08:00
{{item.sn == null ? '--' : item.sn}}
2024-06-21 18:04:01 +08:00
</view>
<view class="line"></view>
<view class="txt">
2024-10-10 17:03:59 +08:00
{{item.apiaryName == null ? '--' : item.apiaryName}}
2024-06-21 18:04:01 +08:00
</view>
<view class="line"></view>
<view class="txt">
2024-10-10 17:03:59 +08:00
{{item.lastOnlineTime == null ? '--' : item.lastOnlineTime}}
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="info_cont">
2024-07-11 18:03:13 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 1">
2024-06-21 18:04:01 +08:00
<view class="li_top">
<image src="https://api.ccttiot.com/smartmeter/img/static/uk7CvwzeU0ukxvS9cBtD" mode=""></image>
<view class="li_txt">
2024-07-11 18:03:13 +08:00
{{item.totalWeight == 999999 ? '--' : (item.totalWeight / 1000).toFixed(1)}}
2024-06-21 18:04:01 +08:00
<span>kg</span>
</view>
</view>
<view class="li_bot">
重量
</view>
</view>
2024-07-12 18:14:24 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 3">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-12 18:14:24 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/una6Kbd2gdBZ9gG6lg44 " mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-10-10 17:03:59 +08:00
{{item.innerTemperature < -40 || item.innerTemperature > 100 ? '--' : item.innerHumidity}}
2024-07-12 18:14:24 +08:00
<span>%</span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-07-12 18:14:24 +08:00
箱内湿度
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-12 18:14:24 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 3">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-12 18:14:24 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/uWjV9HEHrP5g0B5AHD1j" mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-10-10 17:03:59 +08:00
{{item.innerTemperature < -40 || item.innerTemperature > 100 ? '--' : item.innerTemperature}}
2024-07-12 18:14:24 +08:00
<span></span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-07-12 18:14:24 +08:00
箱内温度
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-12 18:14:24 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 2">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-12 18:14:24 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/uhsU6Y1K35jxA4aRauzy" mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-10-10 17:03:59 +08:00
{{item.ioCountDay == null ? '--' : item.ioCountDay}}
<span></span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-10-10 17:03:59 +08:00
出勤
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-11 18:03:13 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 4">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-11 18:03:13 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/una6Kbd2gdBZ9gG6lg44" mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-07-11 18:03:13 +08:00
{{ item.outerHumidity < -40 || item.outerHumidity > 100 || item.outerTemperature < -40 || item.outerTemperature > 100 ? '--' : item.outerHumidity}}
<span>%</span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-07-11 18:03:13 +08:00
箱外湿度
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-12 18:14:24 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 4">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-12 18:14:24 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/uWjV9HEHrP5g0B5AHD1j" mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-07-12 18:14:24 +08:00
{{item.outerTemperature < -40 || item.outerTemperature > 100 || item.outerHumidity < -40 || item.outerHumidity > 100 ? '--' : item.outerTemperature}}
<span></span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-07-12 18:14:24 +08:00
箱外温度
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-12 18:14:24 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 9">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-12 18:14:24 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/um4lfl5q2O7FNM1EQc2L" mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-07-12 18:14:24 +08:00
{{item.innerCo2 == 0 ? '--' : item.innerCo2}}
<span>ppm</span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-07-12 18:14:24 +08:00
二氧化碳
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-12 18:14:24 +08:00
<view class="info_li" v-for="(val,index) in item.modelTags" :key="index" v-if="val == 10">
2024-06-21 18:04:01 +08:00
<view class="li_top">
2024-07-12 18:14:24 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/up9IaGzSg1RKhIZz3V7a" mode=""></image>
2024-06-21 18:04:01 +08:00
<view class="li_txt">
2024-07-12 18:14:24 +08:00
{{item.volume / 1000 == 0 ? '--' : (item.volume / 1000).toFixed(1)}}
<span>khz</span>
2024-06-21 18:04:01 +08:00
</view>
</view>
<view class="li_bot">
2024-07-12 18:14:24 +08:00
频率
2024-06-21 18:04:01 +08:00
</view>
</view>
2024-07-12 18:14:24 +08:00
2024-06-21 18:04:01 +08:00
</view>
</view>
</view>
2024-07-01 18:03:05 +08:00
</scroll-view>
2024-06-21 18:04:01 +08:00
</swiper-item>
</swiper>
</view>
2024-06-11 18:02:55 +08:00
<tab-bar :indexs='2' style=""></tab-bar>
2024-07-12 18:14:24 +08:00
<u-toast ref="uToast" />
2024-06-11 18:02:55 +08:00
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #FAFDFD",
},
2024-06-21 18:04:01 +08:00
code: '',
swiperHeight:554,
2024-07-01 18:03:05 +08:00
curtitidx:0,
2024-10-28 18:00:49 +08:00
miyuancolumns: [{label:'全部',count:'0'}],
2024-07-01 18:03:05 +08:00
pagesum: 1,
pagesize: 99,
pagesizes: 5,
fxlist:[],
total: '',
apiaryId:'',
2024-07-03 18:03:01 +08:00
indextab:0,
logoflag:false
2024-06-11 18:02:55 +08:00
}
},
onLoad() {
2024-07-08 18:16:58 +08:00
2024-06-11 18:02:55 +08:00
},
onShow() {
2024-07-08 18:16:58 +08:00
this.indextab = 0
2024-07-01 18:03:05 +08:00
this.pagesum = 1
// this.fxlist = []
this.getmiyuancolumns()
2024-06-11 18:02:55 +08:00
},
methods: {
2024-07-03 18:03:01 +08:00
changserch(){
let data = {
pageNum:this.pagesum,
pageSize:this.pagesizes,
name:this.code,
sn:this.code
}
this.$u.get('/farm/beehive/list', data).then(res => {
if(res.code == 200){
this.fxlist = []
this.total = res.total
this.fxlist = res.rows
}
})
},
2024-07-01 18:03:05 +08:00
todetail(beehiveId){
uni.navigateTo({
url:'/page_Beehive/Beehive_detail?beehiveId=' + beehiveId
})
},
btntab(index,item){
this.indextab = index
this.pagesum = 1
this.apiaryId = item.value
this.getlist()
},
getlist(){
let data = {
pageNum:this.pagesum,
pageSize:this.pagesizes,
apiaryId:this.apiaryId
}
this.$u.get('/farm/beehive/list', data).then(res => {
if(res.code == 200){
this.total = res.total
2024-07-03 18:03:01 +08:00
if(this.total < 1){
this.logoflag = true
2024-07-04 18:02:46 +08:00
}else{
this.logoflag = false
2024-07-11 18:03:13 +08:00
if(this.pagesum > 1){
this.fxlist = this.fxlist .concat(res.rows)
}else{
this.fxlist = res.rows
}
// let oldSnSet = new Set(this.fxlist.map(item => item.sn));
// let result = this.fxlist
// res.rows.forEach(row => {
// if (oldSnSet.has(row.sn)) {
// result.push(row)
// oldSnSet.delete(row.sn)
// } else {
// result.push(row)
// }
// });
// result.sort((a, b) => b.onlineStatus - a.onlineStatus) // 1 在前0 在后
// this.fxlist = result.filter(row => oldSnSet.has(row.sn))
// this.fxlist = result
this.pagesum++
2024-07-03 18:03:01 +08:00
}
2024-07-01 18:03:05 +08:00
}
})
},
loadMore() {
if (this.fxlist.length < this.total) {
this.getlist()
} else {
2024-07-12 18:14:24 +08:00
this.$refs.uToast.show({
2024-07-11 18:03:13 +08:00
title: '没有更多蜂箱了',
2024-07-12 18:14:24 +08:00
type: 'default',
position:'bottom'
})
2024-07-01 18:03:05 +08:00
}
},
getmiyuancolumns() {
let data = {
pageNum: this.pagesum,
pageSize: this.pagesize
};
this.$u.get('/farm/apiary/list', data).then((res) => {
if (res.code === 200) {
this.miyuancolumns = res.rows.map(item => ({
value: item.apiaryId,
2024-07-08 18:16:58 +08:00
label: item.name,
count:item.beehiveCount
2024-07-01 18:03:05 +08:00
}))
2024-07-08 18:16:58 +08:00
this.miyuancolumns.unshift({ label: '全部',value:'',count:'-1'})
2024-07-01 18:03:05 +08:00
this.apiaryId = this.miyuancolumns[0].value
2024-07-03 18:03:01 +08:00
this.logoflag = false
2024-07-01 18:03:05 +08:00
this.getlist()
} else {
2024-07-03 18:03:01 +08:00
this.logoflag = true
2024-07-01 18:03:05 +08:00
}
})
},
2024-06-21 18:04:01 +08:00
swiperchange(e) {
this.curtitidx = e.detail.current
},
2024-07-01 10:06:13 +08:00
addApiary(){
uni.navigateTo({
url:'/page_Beehive/add_Beehive'
})
}
2024-06-11 18:02:55 +08:00
}
}
</script>
2024-06-21 18:04:01 +08:00
<style lang="scss">
2024-07-01 18:03:05 +08:00
#active{
border-bottom: 3px solid #FFC107;
2024-07-04 18:02:46 +08:00
font-weight: 600;
font-size: 40rpx;
2024-07-08 18:16:58 +08:00
display: block !important;
2024-07-01 18:03:05 +08:00
}
2024-07-03 18:03:01 +08:00
#status{
background-color: #808080;
}
2024-06-21 18:04:01 +08:00
page {
background-color: #FAFDFD;
}
.page {
width: 750rpx;
.swiper {
2024-07-11 18:03:13 +08:00
height: 76vh !important;
padding-bottom: 230rpx;
2024-07-01 18:03:05 +08:00
box-sizing: border-box;
2024-06-21 18:04:01 +08:00
.swiper-item {
2024-07-01 18:03:05 +08:00
overflow: scroll;
2024-06-21 18:04:01 +08:00
height: 100%;
.card_box {
margin: 0 auto;
padding: 20rpx 24rpx;
margin-top: 24rpx;
width: 674rpx;
2024-07-11 18:03:13 +08:00
max-height: 100%;
2024-06-21 18:04:01 +08:00
background: #FFFFFF;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0,0,0,0.15);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.info_cont{
display: flex;
flex-wrap: wrap;
.info_li:nth-child(3n){
margin-right: 0;
}
.info_li{
margin-top: 28rpx;
width: 33%;
.li_top{
display: flex;
flex-wrap: nowrap;
image{
2024-07-04 18:02:46 +08:00
width: 36rpx;
height: 36rpx;
2024-06-21 18:04:01 +08:00
}
.li_txt{
2024-07-04 18:02:46 +08:00
margin-left: 12rpx;
2024-06-21 18:04:01 +08:00
display: flex;
align-items: flex-start;
font-weight: 600;
2024-07-04 18:02:46 +08:00
font-size: 30rpx;
2024-06-21 18:04:01 +08:00
color: #3D3D3D;
span{
font-size: 20rpx;
}
}
}
.li_bot{
margin-left: 4rpx;
margin-top: 14rpx;
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
}
}
}
.card_top{
display: flex;
flex-wrap: nowrap;
align-items: center;
.txt{
font-weight: 500;
font-size: 24rpx;
color: #808080;
}
.line{
margin-left: 18rpx;
margin-right: 18rpx;
width: 0rpx;
height: 30rpx;
border: 2rpx solid #808080;
}
.name{
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
}
.online{
margin-left: 26rpx;
padding: 6rpx 10rpx;
background: #4CD964;
border-radius: 8rpx 8rpx 8rpx 8rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
}
.type{
margin-left: 24rpx;
padding: 6rpx 10rpx;
background: #FFC107;
border-radius: 8rpx 8rpx 8rpx 8rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
}
.ele{
margin-left: auto;
display: flex;
align-items: center;
flex-wrap: nowrap;
font-weight: 400;
font-size: 28rpx;
color: #808080;
image{
margin-right: 12rpx;
width: 46rpx;
height: 46rpx;
}
}
}
}
}
}
.top_cont {
padding: 0 38rpx;
.tabbar::-webkit-scrollbar {
width: 0 !important;
}
.tabbar {
display: flex;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
/* 防止换行 */
-webkit-overflow-scrolling: touch;
/* 优化触摸滚动 */
.cont {
2024-07-03 18:03:01 +08:00
margin-right: 30rpx;
2024-06-21 18:04:01 +08:00
font-weight: 400;
font-size: 36rpx;
color: #3D3D3D;
2024-07-08 18:16:58 +08:00
position: relative;
.gl{
width: 46rpx;
height: 46rpx;
background: #FFC107;
border-radius: 50%;
position: absolute;
2024-10-26 17:50:24 +08:00
top: 4rpx;
2024-10-26 10:50:08 +08:00
left: 0rpx;
2024-07-08 18:16:58 +08:00
opacity: .7;
2024-10-26 17:50:24 +08:00
z-index: -1;
2024-07-08 18:16:58 +08:00
display: none;
}
2024-06-21 18:04:01 +08:00
}
}
.top_box {
margin: 42rpx auto;
display: flex;
flex-wrap: nowrap;
width: 664rpx;
2024-07-08 18:16:58 +08:00
align-items: center;
2024-06-21 18:04:01 +08:00
.search {
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 20rpx 26rpx;
width: 566rpx;
height: 82rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0, 0, 0, 0.15);
border-radius: 20rpx 20rpx 20rpx 20rpx;
image {
width: 35.97rpx;
height: 35.97rpx;
}
.search_center {
margin-left: 34rpx;
width: 480rpx;
.ips {
// 基本样式设置
width: 100%; // 根据需要调整
}
.my-placeholder {
font-weight: 400;
font-size: 32rpx;
color: #808080;
}
}
}
.add {
margin-left: 30rpx;
width: 66rpx;
height: 66rpx;
}
}
}
.no_cont {
margin: 152rpx auto 0;
width: 432rpx;
.img {
image {
width: 432rpx;
height: 432rpx;
}
}
.txt {
margin-top: 50rpx;
width: 100%;
text-align: center;
font-weight: 500;
font-size: 32rpx;
color: #808080;
}
}
}
</style>