济菏高速业务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
2.1 KiB

1 year ago
<template>
<div class="TrafficFlow">
1 year ago
<!-- 交通路网状况 -->
<Traffic class="head" />
<section class="content">
<!-- 在途车流量车型分类 -->
<!-- 全路段拥堵状况 -->
<Congestion class="content-l"></Congestion>
1 year ago
<!-- 畅通率 -->
<!-- <Unblocked class="content-m" /> -->
<!-- 全路车流量状况 -->
<Flowstate class="content-r" />
</section>
<section class="foot">
<!-- 交通路段状态 -->
<Heightway class="foot-l" />
<Classification class="foot-m" />
<!-- 路段交通量情况 -->
1 year ago
<Situation class="foot-r" />
</section>
</div>
</template>
<script>
import Traffic from "./components/traffic/";
import Classification from "./components/classification/";
import Unblocked from "./components/unblocked/";
import Congestion from "./components/congestion/";
import Heightway from "./components/heightway/";
import Flowstate from "./components/flowstate/";
import Situation from "./components/situation/";
1 year ago
export default {
name: "TrafficFlow",
1 year ago
components: {
Traffic,
Classification,
Unblocked,
Congestion,
Heightway,
Flowstate,
Situation,
},
};
1 year ago
</script>
<style lang="scss" scoped>
1 year ago
.TrafficFlow {
width: 100%;
height: 100%;
position: relative;
z-index: 6;
color: white;
.head {
1 year ago
width: 98%;
margin: auto;
margin-top: 15px;
}
1 year ago
.content {
--keep-ratio: scaleX(1);
1 year ago
width: 98%;
margin: auto;
display: flex;
flex: 1;
pointer-events: none;
margin-top: 19px;
> div {
1 year ago
pointer-events: auto;
}
.content-l {
width: 49.4%;
margin-right: 20px;
1 year ago
}
.content-m {
width: 260px;
}
1 year ago
.content-r {
width: 49.4%;
}
}
.foot {
--keep-ratio: scaleX(1);
1 year ago
width: 98%;
margin: auto;
display: flex;
flex: 1;
pointer-events: none;
margin-top: 19px;
> div {
1 year ago
pointer-events: auto;
}
.foot-l {
width: 756px;
margin-right: 20px;
1 year ago
}
1 year ago
.foot-m {
width: 580px;
margin-right: 20px;
1 year ago
}
1 year ago
.foot-r {
width: 500px;
1 year ago
}
}
}
</style>