jsy-app/pages/fourmonitor/index.vue
2025-01-13 18:30:46 +08:00

118 lines
3.1 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>
<z-paging ref="paging" use-virtual-list @query="queryList" bg-color="#F3F3F3" :loading-more-enabled="false">
<template #top>
<custom-nav-bar :left="true" title="农情"></custom-nav-bar>
</template>
<template #cell="{item}">
<view class="card" @click="onClickItem(item)">
<view class="content">
<view class="cards-content">
<view class="txt-list">
<view class="left">
<view>
<view v-if="item.deviceTypeId==6">气象站</view>
<view v-if="item.deviceTypeId==7">虫情</view>
<view v-if="item.deviceTypeId==8">孢子</view>
<view v-if="item.deviceTypeId==9">监控</view>
<view v-if="item.deviceCode">{{item.deviceCode}}</view>
<view v-else>-</view>
</view>
<view>
<view>状态</view>
<view class="font-green" v-if="item.status == 'online'">在线</view>
<view class="font-red" v-else>离线</view>
</view>
</view>
<view class="right">
<view class="iconfont icon-you">
</view>
</view>
</view>
</view>
</view>
</view>
</template>
</z-paging>
</template>
<script>
import {
checkPermi
} from "@/utils/permission"
import store from "@/store"
import plugin from "@/plugins"
import {
getOtherDeviceList
} from "@/api/system/controlOtherInterface"
import {
getAccessTokenAndUrl
} from "@/api/system/outdevice";
export default {
data() {
return {
ijs: getApp().ijs, // 首页公共js
title: "",
isFirst: true,
user: store.state.user.user,
query: {
companyGroupId: null,
},
accessToken: null,
ezopenUrl: null
}
},
onShow() {
if (this.ijs.land) {
console.log(this.ijs.land)
this.query.companyGroupId = this.ijs.land.companyGroupId;
this.queryList();
}
},
methods: {
queryList() {
if (!this.query.companyGroupId) {
return;
}
getOtherDeviceList(this.query.companyGroupId).then(res => {
this.$refs.paging.complete(res.data)
});
},
// 获取地块信息
getLand(e) {
this.ijs.getLand(e.node).then(res => {
this.$refs.landRef.addLand(e, res.data);
});
},
// 地块选择回调
landChange(e) {
this.title = e.landName;
this.query.landId = land.id;
queryList();
},
onClickItem(item) {
if (item.deviceTypeId === 6) {
plugin.tab.navigateTo("/pages/fourmonitor/weatherstation?item=" + encodeURIComponent(JSON.stringify(
item)))
}
if (item.deviceTypeId === 7) {
plugin.tab.navigateTo("/pages/fourmonitor/pest?item=" + encodeURIComponent(JSON.stringify(item)))
}
if (item.deviceTypeId === 8) {
plugin.tab.navigateTo("/pages/fourmonitor/spore?item=" + encodeURIComponent(JSON.stringify(item)))
}
if (item.deviceTypeId === 9) {
if (!item.ezopenUrl1 || !item.ezopenUrl2) {
plugin.modal.msgError("获取播放地址失败!");
return;
}
plugin.tab.navigateTo("/pages/fourmonitor/camera?item=" + encodeURIComponent(JSON.stringify(item)))
}
}
}
}
</script>
<style lang="scss" scoped>
</style>