济菏高速业务端
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.

100 lines
1.8 KiB

1 year ago
<template>
1 year ago
<div class="TrafficFlow fl-col">
1 year ago
<!-- 交通路网状况 -->
1 year ago
<Traffic class="row_01" />
<section class="row_02">
1 year ago
<!-- 在途车流量车型分类 -->
<!-- 全路段拥堵状况 -->
1 year ago
<Congestion class="unit_01" />
1 year ago
<!-- 畅通率 -->
<!-- <Unblocked class="content-m" /> -->
<!-- 全路车流量状况 -->
1 year ago
<Flowstate class="unit_02" />
1 year ago
</section>
1 year ago
<section class="row_03">
<Heightway class="unit_01" />
<Classification class="unit_02" />
<Situation class="unit_03" />
1 year ago
</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%;
1 year ago
padding: 14px;
1 year ago
1 year ago
.row_01 {
height: 160px;
}
1 year ago
.row_02 {
overflow: hidden;
1 year ago
// --keep-ratio: scaleX(1);
1 year ago
display: flex;
pointer-events: none;
1 year ago
margin-top: 14px;
> div {
1 year ago
pointer-events: auto;
}
1 year ago
.unit_01 {
flex-basis: 50%;
margin-right: 14px;
}
.unit_02 {
flex-basis: 50%;
}
1 year ago
}
1 year ago
.row_03 {
1 year ago
display: flex;
flex: 1;
pointer-events: none;
1 year ago
margin-top: 14px;
> div {
1 year ago
pointer-events: auto;
}
1 year ago
.unit_01 {
width: 756px;
1 year ago
margin-right: 14px;
1 year ago
}
1 year ago
.unit_02 {
width: 580px;
1 year ago
margin-right: 14px;
1 year ago
}
1 year ago
.unit_03 {
1 year ago
flex: 1;
1 year ago
}
}
}
</style>