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

92 lines
2.0 KiB

1 year ago
<template>
1 year ago
<div class="TrafficFlow">
1 year ago
<section class="row_01">
<Railway class="content-l" />
1 year ago
<div class="content_r_g">
<RailWayDay class="content_r_unit" />
<DayTotal class="content_r_unit" />
</div>
1 year ago
<div class="content_r_g">
<EventSource class="content_r_unit" />
<DailyDisposal class="content_r_unit" />
</div>
1 year ago
<div class="content_r_g" style="margin-right: 0">
<MonthStatistice class="content_r_unit" />
<TypeAnalysis class="content_r_unit" />
</div>
</section>
1 year ago
<EventQuery class="row_02" />
</div>
</template>
1 year ago
<script>
1 year ago
import Railway from "./components/railway/index.vue";
import RailWayDay from "./components/railwayDay/index.vue";
import DayTotal from "./components/dayTotal/index.vue";
import EventSource from "./components/eventSource/index.vue";
import DailyDisposal from "./components/dailyDisposal/index.vue";
1 year ago
import TypeAnalysis from "./components/typeAnalysis/index.vue";
1 year ago
import MonthStatistice from "./components/monthStatistics/index.vue";
1 year ago
import EventQuery from "./components/eventQuery/index.vue";
export default {
1 year ago
name: "EventDetection",
components: {
Railway,
RailWayDay,
DayTotal,
EventSource,
DailyDisposal,
TypeAnalysis,
MonthStatistice,
EventQuery,
1 year ago
},
};
</script>
1 year ago
<style lang="scss" scoped>
.TrafficFlow {
width: 100%;
height: 100%;
1 year ago
display: flex;
flex-direction: column;
align-items: stretch;
padding:8px 16px 16px;
.row_01 {
flex-basis: 55%; margin-bottom: 15px;
display: flex; align-items: stretch;
pointer-events: none;
1 year ago
> div {
pointer-events: auto;
1 year ago
}
.content-l {
1 year ago
flex-basis: 25%;
margin-right: 15px;
1 year ago
}
1 year ago
.content_r_g {
display: flex;
flex-direction: column;
1 year ago
flex-basis: 25%;
margin-right: 15px;
1 year ago
.content_r_unit {
width: 100%;
1 year ago
flex-basis: 50%;
margin-bottom: 15px;
1 year ago
&:last-child{ margin-bottom: 0;}
1 year ago
}
}
}
1 year ago
.row_02 {
flex: 1;
1 year ago
// pointer-events: none;
1 year ago
}
}
</style>