lg_frontend/pages/wuzuzhi/paifang.vue

96 lines
3.0 KiB
Vue
Raw Normal View History

2024-07-21 00:23:30 +00:00
<template>
2024-08-06 14:30:41 +00:00
<new-bg>
<flex-col>
<system-title show-back custom-title="无组织排放" :btns="btns"/>
<ModuleContent padding="0px 20px 20px">
<a-row :gutter="16" style="height: 100%;margin-top: 16px;">
<a-col :span="4" style="height: 100%;">
<div class="con" style="height: 100%;display: flex;flex-direction: column; width: 100%;">
<web3-title>设备数量统计</web3-title>
<Split height="10"></Split>
<ModuleContent2 height="30%">
<cus-desc :data="tongji" :columns="descColumns"></cus-desc>
</ModuleContent2>
<web3-title>报警类型数据分析</web3-title>
<Split height="10"></Split>
<ModuleContent2 >
</ModuleContent2>
</div>
</a-col>
<a-col :span="16" style="height: 100%;">
<div style="height: 100%;position: relative">
<div class="map-cv" style="height: calc(100% - 80px);position: relative">
<Map></Map>
</div>
<butgroup>
<cus-button>
<nuxt-link to="/wuzuzhi/xichejiguanli">洗车机管理</nuxt-link>
</cus-button>
<cus-button>
<nuxt-link to="/wuzuzhi/huanjingzhili">环境治理</nuxt-link>
</cus-button>
<cus-button>
<nuxt-link to="/wuzuzhi/huanweixunhang">环卫巡航</nuxt-link>
</cus-button>
</butgroup>
</div>
</a-col>
<a-col :span="4">
<a-card title="国Ⅵ输车辆" size="small">
<p>card content</p>
</a-card>
</a-col>
</a-row>
</ModuleContent>
>
</flex-col>
</new-bg>
2024-07-21 00:23:30 +00:00
</template>
<script>
import Map from "../../components/Map.vue";
2024-08-06 14:30:41 +00:00
import SystemTitle from "../../components/smallCommon/SystemTitle.vue";
import NewBg from "../../components/NewBg.vue";
import FlexCol from "../../components/FlexCol.vue";
import ModuleContent from "../../components/ModuleContent.vue";
import Butgroup from "../../components/smallCommon/butgroup.vue";
import CusButton from "../../components/smallCommon/CusButton.vue";
import Web3Title from "../../components/smallCommon/Web3Title.vue";
import ModuleContent2 from "../../components/smallCommon/ModuleContent2.vue";
import Split from "../../components/smallCommon/Split.vue";
import CusDesc from "../../components/smallCommon/CusDesc.vue";
2024-07-21 00:23:30 +00:00
export default {
name: "paifang",
components: {
2024-08-06 14:30:41 +00:00
CusDesc,
Split,
ModuleContent2,
Web3Title,
CusButton, Butgroup,
ModuleContent,
FlexCol, NewBg, SystemTitle,
2024-07-21 00:23:30 +00:00
Map
2024-08-06 14:30:41 +00:00
},
data () {
return {
tongji: {},
descColumns: [
{ title: '设备数量', key: 'total' },
{ title: '运行设备数量', key: 'total' },
{ title: '设备异常数量', key: 'total' },
{ title: '关闭设备数量', key: 'total' },
]
}
2024-07-21 00:23:30 +00:00
}
}
</script>
<style scoped lang="less">
</style>