278 lines
7.8 KiB
Vue
278 lines
7.8 KiB
Vue
|
<script lang="ts" setup>
|
|||
|
import { useIntervalFn } from '@vueuse/core';
|
|||
|
import { onMounted, ref } from 'vue';
|
|||
|
|
|||
|
import { renderEcharts, updateChart } from '@/views/smart-park/charts/right-sidebar';
|
|||
|
import ContentItem from '@/views/smart-park/components/common/content-item.vue';
|
|||
|
import ContentPercent from '@/views/smart-park/components/common/content-percent.vue';
|
|||
|
|
|||
|
const weekDataChart = ref<HTMLDivElement>();
|
|||
|
|
|||
|
/** 随机数据 */
|
|||
|
const randomData = () => {
|
|||
|
renderEcharts(weekDataChart);
|
|||
|
|
|||
|
function random() {
|
|||
|
return Array(11)
|
|||
|
.fill(0)
|
|||
|
.map(() => {
|
|||
|
const num = (Math.random() * 100).toFixed(2);
|
|||
|
return parseInt(num);
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
useIntervalFn(() => {
|
|||
|
updateChart({ data1: random(), data2: random() });
|
|||
|
}, 1000);
|
|||
|
};
|
|||
|
|
|||
|
onMounted(() => {
|
|||
|
randomData();
|
|||
|
});
|
|||
|
</script>
|
|||
|
|
|||
|
<template>
|
|||
|
<div class="pt-[78px] mx-auto flex-center w-[1620px] h-[650px]">
|
|||
|
<div class="smart-park__sidebar smart-park__sidebar--left">
|
|||
|
<div class="pt-[55px] pl-[25px]" style="transform: rotateY(180deg)">
|
|||
|
<!-- 路况 -->
|
|||
|
<div class="smart-park__sidebar-title">
|
|||
|
<h1>实时道路情况</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<!-- 汽车列表 -->
|
|||
|
<ul class="mt-[32px]">
|
|||
|
<li class="smart-park__sidebar--left-item">
|
|||
|
<img alt="car-1" src="../images/car/car-1.png" />
|
|||
|
<p>入卡口(西北门)</p>
|
|||
|
<span class="dashed-circle c-primary-secondary border-b-primary-secondary">畅通</span>
|
|||
|
</li>
|
|||
|
<li class="smart-park__sidebar--left-item">
|
|||
|
<img alt="car-1" src="../images/car/car-1.png" />
|
|||
|
<p>入卡口(东北门)</p>
|
|||
|
<span class="dashed-circle c-primary-secondary border-b-primary-secondary">畅通</span>
|
|||
|
</li>
|
|||
|
<li class="smart-park__sidebar--left-item">
|
|||
|
<img alt="car-1" src="../images/car/car-2.png" />
|
|||
|
<p>入卡口(东北门)</p>
|
|||
|
<span class="dashed-circle c-warning border-b-warning">拥堵</span>
|
|||
|
</li>
|
|||
|
<li class="smart-park__sidebar--left-item">
|
|||
|
<img alt="car-1" src="../images/car/car-1.png" />
|
|||
|
<p>入卡口(东南门)</p>
|
|||
|
<span class="dashed-circle c-primary-secondary border-b-primary-secondary">畅通</span>
|
|||
|
</li>
|
|||
|
</ul>
|
|||
|
|
|||
|
<!-- 建议 -->
|
|||
|
<div class="smart-park__sidebar--left-suggest">
|
|||
|
<h5>车流量建议</h5>
|
|||
|
<p>
|
|||
|
高峰时段大量车流量容易造成拥堵,主要由XXX企业、XXX企业的车辆构成,
|
|||
|
<span>可建议XXX企业向后延迟15min错峰入园。</span>
|
|||
|
高峰时段大量车流量容易造成拥堵, 主要由XXX企业、XXX企业的车辆构成
|
|||
|
</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="smart-park__body">
|
|||
|
<div class="h-[570px] flex-y-between">
|
|||
|
<div class="smart-park__body-title">
|
|||
|
<h1>卡口车辆监控</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<!-- 中间布局 -->
|
|||
|
<div class="smart-park__body-inner">
|
|||
|
<div class="pos-relative">
|
|||
|
<content-item :count="45" class="top-[37px] left-[40px] w-[175px]" door="西北门" />
|
|||
|
<content-percent :percent="44" class="top-[73px] left-[193px]" />
|
|||
|
</div>
|
|||
|
<div class="pos-relative">
|
|||
|
<content-item :count="67" class="top-[37px] left-[120px] w-[175px]" door="东北门" />
|
|||
|
<content-percent :percent="25" class="top-[73px] right-[192px]" />
|
|||
|
</div>
|
|||
|
<div class="pos-relative">
|
|||
|
<content-item :count="345" class="top-[45px] left-[34px] w-[175px]" door="西南门" />
|
|||
|
<content-percent :percent="25" class="top-[40px] left-[193px]" />
|
|||
|
</div>
|
|||
|
<div class="pos-relative">
|
|||
|
<content-item :count="145" class="top-[45px] left-[130px] w-[175px]" door="东南门" />
|
|||
|
<content-percent :percent="44" class="top-[40px] left-[66px]" />
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="smart-park__body-content">
|
|||
|
<div class="smart-park__body-content-headline flex-center">
|
|||
|
<h1>智能管控</h1>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="smart-park__sidebar ml-[20px]">
|
|||
|
<div class="pt-[55px] pl-[25px]">
|
|||
|
<!-- 路况 -->
|
|||
|
<div class="smart-park__sidebar-title">
|
|||
|
<h1>近7天车流量概览</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<!-- 汽车列表 -->
|
|||
|
<ul class="flex-x-around mt-[32px] w-[331px]">
|
|||
|
<li class="smart-park__sidebar-flow-item">
|
|||
|
<span>最高进园车流量</span>
|
|||
|
<span>897</span>
|
|||
|
</li>
|
|||
|
<li class="smart-park__sidebar-flow-item">
|
|||
|
<span>最高进园车流量</span>
|
|||
|
<span>494</span>
|
|||
|
</li>
|
|||
|
</ul>
|
|||
|
|
|||
|
<!-- 七天数据 -->
|
|||
|
<div class="w-[325px] h-[205px]">
|
|||
|
<div ref="weekDataChart" class="smart-park__sidebar-flow-item-charts" />
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
<style lang="scss" scoped>
|
|||
|
.smart-park__sidebar--left {
|
|||
|
margin: 0 20px 0 0;
|
|||
|
transform: rotateY(180deg);
|
|||
|
|
|||
|
&-item {
|
|||
|
display: flex;
|
|||
|
justify-content: space-around;
|
|||
|
align-items: center;
|
|||
|
width: 330px;
|
|||
|
height: 61px;
|
|||
|
margin: 0 0 9px 0;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-frame.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
|
|||
|
img {
|
|||
|
width: 60px;
|
|||
|
}
|
|||
|
|
|||
|
p {
|
|||
|
color: #fff;
|
|||
|
font-size: 14px;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-suggest {
|
|||
|
margin: 24px 0 0 0;
|
|||
|
padding: 15px 14px 17px 20px;
|
|||
|
width: 330px;
|
|||
|
height: 157px;
|
|||
|
color: #fff;
|
|||
|
font-size: 14px;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-suggest.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
|
|||
|
span {
|
|||
|
color: var(--color-warning-secondary);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.smart-park__body {
|
|||
|
display: flex;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
width: 824px;
|
|||
|
height: 650px;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-middle.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
|
|||
|
// 中间部分标题
|
|||
|
&-title {
|
|||
|
height: 61px;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-main-title.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
|
|||
|
h1 {
|
|||
|
color: #fff;
|
|||
|
font-size: 22px;
|
|||
|
text-align: center;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// 中间部分四个部分
|
|||
|
&-inner {
|
|||
|
display: grid;
|
|||
|
grid-template-columns: 1fr 1fr;
|
|||
|
grid-template-rows: 1fr 1fr;
|
|||
|
position: relative;
|
|||
|
margin: 28px 0 77px 0;
|
|||
|
width: 666px;
|
|||
|
height: 400px;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-main-1.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
}
|
|||
|
|
|||
|
// 中心智能管控
|
|||
|
&-content {
|
|||
|
position: absolute;
|
|||
|
top: 50%;
|
|||
|
left: 50%;
|
|||
|
transform: translate(-50%, -50%);
|
|||
|
width: 138px;
|
|||
|
height: 138px;
|
|||
|
|
|||
|
&-headline {
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-main-center.png');
|
|||
|
background-size: cover;
|
|||
|
font-size: 19px;
|
|||
|
animation: rotate 30s linear infinite;
|
|||
|
|
|||
|
h1 {
|
|||
|
width: 53px;
|
|||
|
color: var(--color-primary-secondary);
|
|||
|
text-align: center;
|
|||
|
animation: rotate-reverse 30s linear infinite;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
.smart-park__sidebar-flow-item {
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
justify-content: space-between;
|
|||
|
width: 162px;
|
|||
|
height: 111px;
|
|||
|
text-align: center;
|
|||
|
|
|||
|
span:nth-child(1) {
|
|||
|
width: 161px;
|
|||
|
height: 40px;
|
|||
|
color: #fff;
|
|||
|
line-height: 40px;
|
|||
|
font-size: 16px;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-frame-2.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
}
|
|||
|
|
|||
|
span:nth-child(2) {
|
|||
|
width: 161px;
|
|||
|
height: 66px;
|
|||
|
color: var(--color-primary-secondary);
|
|||
|
line-height: 66px;
|
|||
|
font-size: 34px;
|
|||
|
background: url('@/views/smart-park/images/bg/bg-frame-3.png') no-repeat center;
|
|||
|
background-size: cover;
|
|||
|
}
|
|||
|
|
|||
|
&-charts {
|
|||
|
margin: 71px 0 0 0;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|