济菏高速业务端

101 lines
2.3 KiB

1 year ago
<template>
1 year ago
<div class="TrafficFlow fl-col">
1 year ago
<!-- 交通路网状况 -->
1 year ago
<Traffic class="row_01" />
11 months ago
<section class="row_02" style="flex-direction: column;">
<Search />
<section class="chartPanel">
<section class="panel">
<div class="title"><div class="icon"></div>全路段车流量状况分析</div>
<Flow></Flow>
</section>
<section class="panel" style="margin:0px 20px;">
<div class="title"><div class="icon"></div>车流量时段分析</div>
<Timer></Timer>
</section>
<section class="panel">
<div class="title"><div class="icon"></div>断面车流量排名</div>
<Section></Section>
</section>
</section>
1 year ago
</section>
11 months ago
<section class="row_02">
<section class="chartPanel">
<section class="panel" style="margin-right:20px;">
<div class="title"><div class="icon"></div>全路段双向实时车流量</div>
<Real></Real>
</section>
<section class="panel">
<div class="title"><div class="icon"></div>收费站出入口实时车流量</div>
<Fee></Fee>
</section>
</section>
1 year ago
</section>
</div>
</template>
<script>
11 months ago
import Search from "./search/index.vue";
import Traffic from "./components/traffic/index.vue";
import Flow from "./flow/index.vue";
import Timer from "./timer/index.vue";
import Section from "./section/index.vue";
import Real from "./real/index.vue";
import Fee from "./fee/index.vue";
1 year ago
export default {
name: "TrafficFlow",
1 year ago
components: {
Traffic,
11 months ago
Search,
Flow,
Timer,
Section,
Real,
Fee
},
};
1 year ago
</script>
<style lang="scss" scoped>
1 year ago
.TrafficFlow {
width: 100%;
height: 100%;
1 year ago
padding: 14px;
1 year ago
1 year ago
.row_01 {
height: 160px;
}
1 year ago
.row_02 {
11 months ago
padding:10px;
background-color: #132d38;
1 year ago
// --keep-ratio: scaleX(1);
11 months ago
flex: 1;
1 year ago
margin-top: 14px;
11 months ago
display: flex;
1 year ago
}
11 months ago
.chartPanel{
1 year ago
display: flex;
flex: 1;
11 months ago
flex-direction: row;
.panel{
1 year ago
flex: 1;
1 year ago
}
}
}
11 months ago
.title{
display: flex;
position: absolute;
align-items: center;
.icon {
width: 5px;
height: 16px;
background-color: #3DE8FF;
margin-right: 10px;
border-radius: 2px;
}
}
1 year ago
</style>