|
@@ -1,7 +1,26 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- <div style="width: 400px;padding-top: 50px;">
|
|
|
- <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ <div class="passenger_flow">
|
|
|
+ <div class="left_passenger_flow">
|
|
|
+ <div class="flex_spection">
|
|
|
+ <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ </div>
|
|
|
+ <div class="flex_spection">
|
|
|
+ <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ </div>
|
|
|
+ <div class="flex_spection">
|
|
|
+ <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="right_passenger_flow">
|
|
|
+ <div class="flex_spection">
|
|
|
+ <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ </div>
|
|
|
+ <div class="flex_spection">
|
|
|
+ <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ </div>
|
|
|
+ <div class="flex_spection">
|
|
|
+ <HeadlineTag value="客流系统passengerFlow"></HeadlineTag>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -12,5 +31,37 @@ const type = 'right'
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
+.passenger_flow {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ padding-top: 45px;
|
|
|
+ height: 100vh;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.left_passenger_flow {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ width: 25%;
|
|
|
+ // height: calc(100% - 45px);
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ padding-left: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.right_passenger_flow {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ width: 25%;
|
|
|
+ // height: calc(100% - 45px);
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
|
|
|
+.flex_spection {
|
|
|
+ flex: 1;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
</style>
|