11111
This commit is contained in:
parent
461ffa19e0
commit
5fa57eb9f2
10
README.md
10
README.md
|
|
@ -53,16 +53,22 @@ https://1x.antdv.com/components/icon/
|
|||
首页 /home
|
||||
|
||||
#### 有组织
|
||||
有组织
|
||||
有组织排放 /youzuzhi/paifang 待联调
|
||||
有组织排放统计 /youzuzhi/paifangtongji 待联调
|
||||
|
||||
#### 无组织
|
||||
无组织排放 /wuzuzhi/paifang 待联调
|
||||
洗车机管理 /wuzuzhi/xichejiguanli 未做
|
||||
环境治理 /wuzuzhi/huanjingzhili 待联调
|
||||
环卫巡航 /wuzuzhi/huanweixunhang 未做
|
||||
|
||||
#### 清洁运输
|
||||
清洁运输 /cleanTravel/home
|
||||
厂区车辆台账 /cleanTravel/ledger
|
||||
清洁运输趋势 /cleanTravel/trend
|
||||
磅秤台账 /cleanTravel/bangcheng
|
||||
磅秤台账 /cleanTravel/bangcheng 未做
|
||||
|
||||
#### 视频广场
|
||||
视频广场 /video/list 未做
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
<div class="list"></div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="less">
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<script>
|
||||
export default {
|
||||
name: "huanweixunhang"
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="huanweixunhang"></div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="less">
|
||||
|
||||
</style>
|
||||
|
|
@ -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>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<script>
|
||||
export default {
|
||||
name: "xichejiguanli"
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="xichejiguanli"></div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="less">
|
||||
|
||||
</style>
|
||||
|
|
@ -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>
|
||||
|
|
@ -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>
|
||||
Loading…
Reference in New Issue