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

62 lines
1.2 KiB

1 year ago
<template>
<div class="TrafficFlowMain">
<el-tabs class="full_tab" v-model="activeName">
<el-tab-pane label="交通流分析" name="first" class="tab_con">
<TrafficFlowAnalysis />
</el-tab-pane>
<el-tab-pane label="交通流统计" name="second" class="tab_con">
<TrafficFlowStatistics />
</el-tab-pane>
</el-tabs>
1 year ago
</div>
</template>
<script>
import TrafficFlowAnalysis from "./analysis/index.vue";
import TrafficFlowStatistics from "./statistics/index.vue";
1 year ago
export default {
name: "TrafficFlow",
1 year ago
components: {
TrafficFlowAnalysis,
TrafficFlowStatistics
},
data() {
return {
activeName:'first'
}
}
};
1 year ago
</script>
<style lang="scss" scoped>
.TrafficFlowMain {
1 year ago
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
padding: 8px 20px 20px;
}
.full_tab {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex: 1;
::v-deep .el-tabs__header {
margin: 0 0 15px;
1 year ago
}
::v-deep .el-tabs__content {
1 year ago
flex: 1;
.el-tab-pane {
width: 100%;
height: 100%;
1 year ago
}
}
}
.tab_con {
display: flex;
flex-direction: column;
}
1 year ago
</style>