中建四局(双碳管理):完成布局
This commit is contained in:
parent
a64aa98165
commit
b39329d1bd
14
src/views/projectAdmin/zjsj/carbon/centerBottom.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/centerBottom.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="晴雨表">
|
||||||
|
晴雨表
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/carbon/centerTop.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/centerTop.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="实时数据">
|
||||||
|
实时数据
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
@ -1,16 +1,66 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="carbon">carbon</div>
|
<div class="carbon">
|
||||||
|
<div class="between">
|
||||||
|
<div class="top"><LeftTop /></div>
|
||||||
|
<div class="center"><LeftCenter /></div>
|
||||||
|
<div class="bottom"><LeftBottom /></div>
|
||||||
|
</div>
|
||||||
|
<div class="center">
|
||||||
|
<div class="top"><CenterTop /></div>
|
||||||
|
<div class="bottom"><CenterBottom /></div>
|
||||||
|
</div>
|
||||||
|
<div class="between">
|
||||||
|
<div class="top"><RightTop /></div>
|
||||||
|
<div class="center"><RightCenter /></div>
|
||||||
|
<div class="bottom"><RightBottom /></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {}
|
import LeftTop from './leftTop.vue'
|
||||||
|
import LeftCenter from './leftCenter.vue'
|
||||||
|
import LeftBottom from './leftBottom.vue'
|
||||||
|
import CenterTop from './centerTop.vue'
|
||||||
|
import CenterBottom from './centerBottom.vue'
|
||||||
|
import RightTop from './rightTop.vue'
|
||||||
|
import RightCenter from './rightCenter.vue'
|
||||||
|
import RightBottom from './rightBottom.vue'
|
||||||
|
export default {
|
||||||
|
components: { LeftTop, LeftCenter, LeftBottom, CenterTop, CenterBottom, RightTop, RightCenter, RightBottom }
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.carbon {
|
.carbon {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: url(../assets/temp/7.png) no-repeat;
|
display: flex;
|
||||||
background-size: 100% 100%;
|
justify-content: space-between;
|
||||||
|
// background: url(../assets/temp/7.png) no-repeat;
|
||||||
|
// background-size: 100% 100%;
|
||||||
|
.between {
|
||||||
|
width: 20%;
|
||||||
|
height: 100%;
|
||||||
|
.top {
|
||||||
|
height: 33.33%;
|
||||||
|
}
|
||||||
|
.center {
|
||||||
|
height: 33.33%;
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
height: 33.33%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
> .center {
|
||||||
|
width: calc(60% - 40px);
|
||||||
|
height: 100%;
|
||||||
|
.top {
|
||||||
|
height: 70%;
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
height: 30%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
14
src/views/projectAdmin/zjsj/carbon/leftBottom.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/leftBottom.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="趋势图">
|
||||||
|
趋势图
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/carbon/leftCenter.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/leftCenter.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="雾炮喷淋">
|
||||||
|
雾炮喷淋
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/carbon/leftTop.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/leftTop.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="环境监测">
|
||||||
|
环境监测
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/carbon/rightBottom.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/rightBottom.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="报警记录">
|
||||||
|
报警记录
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/carbon/rightCenter.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/rightCenter.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="今日报警统计">
|
||||||
|
今日报警统计
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/carbon/rightTop.vue
Normal file
14
src/views/projectAdmin/zjsj/carbon/rightTop.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="空气分析">
|
||||||
|
空气分析
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/centerBottom.vue
Normal file
14
src/views/projectAdmin/zjsj/security/centerBottom.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="晴雨表">
|
||||||
|
晴雨表
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/centerTop.vue
Normal file
14
src/views/projectAdmin/zjsj/security/centerTop.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="实时数据">
|
||||||
|
实时数据
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
@ -1,16 +1,66 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="security">security</div>
|
<div class="security">
|
||||||
|
<div class="between">
|
||||||
|
<div class="top"><LeftTop /></div>
|
||||||
|
<div class="center"><LeftCenter /></div>
|
||||||
|
<div class="bottom"><LeftBottom /></div>
|
||||||
|
</div>
|
||||||
|
<div class="center">
|
||||||
|
<div class="top"><CenterTop /></div>
|
||||||
|
<div class="bottom"><CenterBottom /></div>
|
||||||
|
</div>
|
||||||
|
<div class="between">
|
||||||
|
<div class="top"><RightTop /></div>
|
||||||
|
<div class="center"><RightCenter /></div>
|
||||||
|
<div class="bottom"><RightBottom /></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {}
|
import LeftTop from './leftTop.vue'
|
||||||
|
import LeftCenter from './leftCenter.vue'
|
||||||
|
import LeftBottom from './leftBottom.vue'
|
||||||
|
import CenterTop from './centerTop.vue'
|
||||||
|
import CenterBottom from './centerBottom.vue'
|
||||||
|
import RightTop from './rightTop.vue'
|
||||||
|
import RightCenter from './rightCenter.vue'
|
||||||
|
import RightBottom from './rightBottom.vue'
|
||||||
|
export default {
|
||||||
|
components: { LeftTop, LeftCenter, LeftBottom, CenterTop, CenterBottom, RightTop, RightCenter, RightBottom }
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.security {
|
.security {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: url(../assets/temp/5.png) no-repeat;
|
display: flex;
|
||||||
background-size: 100% 100%;
|
justify-content: space-between;
|
||||||
|
// background: url(../assets/temp/5.png) no-repeat;
|
||||||
|
// background-size: 100% 100%;
|
||||||
|
.between {
|
||||||
|
width: 20%;
|
||||||
|
height: 100%;
|
||||||
|
.top {
|
||||||
|
height: 33.33%;
|
||||||
|
}
|
||||||
|
.center {
|
||||||
|
height: 33.33%;
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
height: 33.33%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
> .center {
|
||||||
|
width: calc(60% - 40px);
|
||||||
|
height: 100%;
|
||||||
|
.top {
|
||||||
|
height: 70%;
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
height: 30%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
14
src/views/projectAdmin/zjsj/security/leftBottom.vue
Normal file
14
src/views/projectAdmin/zjsj/security/leftBottom.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="趋势图">
|
||||||
|
趋势图
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/leftCenter.vue
Normal file
14
src/views/projectAdmin/zjsj/security/leftCenter.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="雾炮喷淋">
|
||||||
|
雾炮喷淋
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/leftTop.vue
Normal file
14
src/views/projectAdmin/zjsj/security/leftTop.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="环境监测">
|
||||||
|
环境监测
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/rightBottom.vue
Normal file
14
src/views/projectAdmin/zjsj/security/rightBottom.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="报警记录">
|
||||||
|
报警记录
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/rightCenter.vue
Normal file
14
src/views/projectAdmin/zjsj/security/rightCenter.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="今日报警统计">
|
||||||
|
今日报警统计
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
14
src/views/projectAdmin/zjsj/security/rightTop.vue
Normal file
14
src/views/projectAdmin/zjsj/security/rightTop.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="空气分析">
|
||||||
|
空气分析
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
Loading…
x
Reference in New Issue
Block a user