This commit is contained in:
DESKTOP-VMMLSOQ\wangzg 2024-07-21 08:23:30 +08:00
parent 461ffa19e0
commit 5fa57eb9f2
8 changed files with 227 additions and 19 deletions

View File

@ -53,16 +53,22 @@ https://1x.antdv.com/components/icon/
首页 /home 首页 /home
#### 有组织 #### 有组织
有组织 有组织排放 /youzuzhi/paifang 待联调
有组织排放统计 /youzuzhi/paifangtongji 待联调
#### 无组织 #### 无组织
无组织排放 /wuzuzhi/paifang 待联调
洗车机管理 /wuzuzhi/xichejiguanli 未做
环境治理 /wuzuzhi/huanjingzhili 待联调
环卫巡航 /wuzuzhi/huanweixunhang 未做
#### 清洁运输 #### 清洁运输
清洁运输 /cleanTravel/home 清洁运输 /cleanTravel/home
厂区车辆台账 /cleanTravel/ledger 厂区车辆台账 /cleanTravel/ledger
清洁运输趋势 /cleanTravel/trend 清洁运输趋势 /cleanTravel/trend
磅秤台账 /cleanTravel/bangcheng 磅秤台账 /cleanTravel/bangcheng 未做
#### 视频广场 #### 视频广场
视频广场 /video/list 未做

View File

@ -5,7 +5,7 @@ export default {
</script> </script>
<template> <template>
<div class="list"></div>
</template> </template>
<style scoped lang="less"> <style scoped lang="less">

View File

@ -133,22 +133,22 @@ export default {
} }
], ],
columnsForTable: [ columnsForTable: [
{ {
title: '设备掉线', title: '设备掉线',
dataIndex: 'deviceName', dataIndex: 'deviceName',
width: '33.333%' width: '33.333%'
}, },
{ {
title: '故障异常', title: '故障异常',
dataIndex: 'errorName', dataIndex: 'errorName',
width: '33.333%' width: '33.333%'
}, },
{ {
title: '异常报警', title: '异常报警',
dataIndex: 'errorImg', dataIndex: 'errorImg',
width: '33.333%' width: '33.333%'
} }
], ],
columns: [ columns: [
{ {
title: '排放标准', title: '排放标准',

View File

@ -0,0 +1,13 @@
<script>
export default {
name: "huanweixunhang"
}
</script>
<template>
<div class="huanweixunhang"></div>
</template>
<style scoped lang="less">
</style>

39
pages/wuzuzhi/paifang.vue Normal file
View File

@ -0,0 +1,39 @@
<template>
<div class="paifang">
<a-page-header
:ghost="false"
style="border-bottom: 1px solid rgb(235, 237, 240)"
title="无组织排放"
@back="() => $router.go(-1)"
/>
<a-row :gutter="16">
<a-col :span="18">
<Map></Map>
</a-col>
<a-col :span="6">
<a-card title="国Ⅵ输车辆" size="small">
<p>card content</p>
</a-card>
</a-col>
</a-row>
</div>
</template>
<script>
import Map from "../../components/Map.vue";
export default {
name: "paifang",
components: {
Map
}
}
</script>
<style scoped lang="less">
</style>

View File

@ -0,0 +1,13 @@
<script>
export default {
name: "xichejiguanli"
}
</script>
<template>
<div class="xichejiguanli"></div>
</template>
<style scoped lang="less">
</style>

View File

@ -0,0 +1,94 @@
<template>
<div class="paifang" style="height: 100vh;overflow: hidden">
<a-page-header
:ghost="false"
style="border-bottom: 1px solid rgb(235, 237, 240)"
title="有组织排放"
@back="() => $router.go(-1)"
/>
<a-row :gutter="16">
<a-col :span="6">
<a-card title="全厂有组织排放源" size="small">
<p>card content</p>
</a-card>
</a-col>
<a-col :span="6">
<a-card title="全厂重要排放源" size="small">
<p>card content</p>
</a-card>
</a-col>
<a-col :span="6">
<a-card title="当前区域排放源" size="small">
<p>card content</p>
</a-card>
</a-col>
<a-col :span="6">
<a-card title="当前区域其中重要排放源" size="small">
<p>card content</p>
</a-card>
</a-col>
</a-row>
<a-row style="height: calc(100% - 147px);margin-top: 16px;" :gutter="16">
<a-col :span="6" style="height: 100%;">
<a-card title="工序步骤" size="small">
<a-button type="primary" block>
Primary
</a-button>
<a-button type="primary" block class="mt16">
Primary
</a-button>
<a-button type="primary" block class="mt16">
Primary
</a-button>
<a-button type="primary" block class="mt16">
Primary
</a-button>
<a-button type="primary" block class="mt16">
Primary
</a-button>
<a-button type="primary" block class="mt16">
Primary
</a-button>
</a-card>
</a-col>
<a-col :span="12" style="height: 100%;">
<div style="height: 100%;position: relative">
<Map></Map>
</div>
</a-col>
<a-col :span="6" style="height: 100%;">
<a-table :columns="columns" :data-source="data" />
</a-col>
</a-row>
</div>
</template>
<script>
import Map from "../../components/Map.vue";
export default {
name: "paifang",
components: {
Map
},
data () {
return {
data: [],
columns: [
{ title: '名词', key: 'name' },
{ title: 'NO', key: 'NO' },
{ title: 'SO2', key: 'SO2' },
{ title: 'TSP', key: 'TSP' },
]
}
}
}
</script>
<style scoped lang="less">
.mt16 {
margin-top: 16px;
}
</style>

View File

@ -0,0 +1,43 @@
<template>
<div class="paifangtongji" style="height: 100vh;overflow: hidden">
<a-page-header
:ghost="false"
style="border-bottom: 1px solid rgb(235, 237, 240)"
title="有组织排放统计"
@back="() => $router.go(-1)"
/>
<a-row :gutter="16">
<a-col :span="18">
</a-col>
<a-col :span="6">
<a-table :columns="columns" :data-source="data" />
</a-col>
</a-row>
</div>
</template>
<script>
export default {
name: "paifangtongji",
data () {
return {
data: [],
columns: [
{ title: '名词', key: 'name' },
{ title: 'NO', key: 'NO' },
{ title: 'SO2', key: 'SO2' },
{ title: 'TSP', key: 'TSP' },
]
}
}
}
</script>
<style scoped lang="less">
</style>