类型:开发
描述:
This commit is contained in:
BIN
src/assets/images/lqh.jpg
Normal file
BIN
src/assets/images/lqh.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.5 MiB |
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="correspondence">
|
<div class="correspondence">
|
||||||
<div class="top-box">
|
<div class="top-box">
|
||||||
<div class="title">融合通信</div>
|
<div class="title">融合通信(调试中)</div>
|
||||||
<div class="icon-box flex">
|
<div class="icon-box flex">
|
||||||
<div
|
<div
|
||||||
class="item"
|
class="item"
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bom-box">
|
<div class="bom-box">
|
||||||
<Title2 title="最近联系" />
|
<Title2 title="最近联系(调试中)" />
|
||||||
<div class="table">
|
<div class="table">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div>人员姓名</div>
|
<div>人员姓名</div>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.title-2 {
|
.title-2 {
|
||||||
width: vw(250);
|
width: vw(240);
|
||||||
height: vh(28);
|
height: vh(28);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
export const baseUrl = 'http://36.138.38.16:8001' // http://36.138.38.16:8001
|
export const baseUrl = 'http://36.138.38.16:8001' // http://36.138.38.16:8001
|
||||||
|
// export const proBaseUrl = 'http://192.168.77.200'
|
||||||
export const proBaseUrl = 'http://192.168.77.200'
|
export const proBaseUrl = 'http://192.168.77.200'
|
||||||
|
|
||||||
export const socketBaseUrl = 'ws://36.138.38.16:81' // ws://36.138.38.16:81
|
export const socketBaseUrl = 'ws://36.138.38.16:81' // ws://36.138.38.16:81
|
||||||
|
|||||||
@@ -86,7 +86,6 @@
|
|||||||
<div class="mt-8">
|
<div class="mt-8">
|
||||||
<age :list="homeStore.userPortraitData?.ageRate" />
|
<age :list="homeStore.userPortraitData?.ageRate" />
|
||||||
</div>
|
</div>
|
||||||
<div class="count">总人数:<countup :end-val="ageRateTotal" /></div>
|
|
||||||
<div
|
<div
|
||||||
class="cell pt-20"
|
class="cell pt-20"
|
||||||
v-for="(item, index) in homeStore?.userPortraitData.genderRate"
|
v-for="(item, index) in homeStore?.userPortraitData.genderRate"
|
||||||
@@ -117,9 +116,6 @@
|
|||||||
|
|
||||||
<div class="box-1">
|
<div class="box-1">
|
||||||
<Title3 title="购票渠道" />
|
<Title3 title="购票渠道" />
|
||||||
<div v-if="channelTotal > 0" class="count">
|
|
||||||
游客总数:<countup :end-val="channelTotal" />
|
|
||||||
</div>
|
|
||||||
<TicketSource :list="homeStore.userPortraitData.channel" :width="230" :height="230" />
|
<TicketSource :list="homeStore.userPortraitData.channel" :width="230" :height="230" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -170,6 +170,7 @@
|
|||||||
watch(
|
watch(
|
||||||
() => [map.value, homeStore.carShipData],
|
() => [map.value, homeStore.carShipData],
|
||||||
() => {
|
() => {
|
||||||
|
return;
|
||||||
if (map.value && homeStore.carShipData) {
|
if (map.value && homeStore.carShipData) {
|
||||||
// clearOverlays()
|
// clearOverlays()
|
||||||
markers.forEach((item) => {
|
markers.forEach((item) => {
|
||||||
|
|||||||
@@ -1,25 +1,23 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="box-1">
|
<div class="box-1">
|
||||||
<template v-if="!scenicSpotId">
|
<template v-if="!scenicSpotId">
|
||||||
<Title1 title="交通信息" />
|
<Title1 title="AI分析统计" />
|
||||||
<div class="traffic">
|
<div class="traffic">
|
||||||
<div class="traffic-item" v-for="(item, index) in trafficData" :key="index">
|
<div class="traffic-item" v-for="(item, index) in trafficData" :key="index">
|
||||||
<span class="traffic-item__title">{{ item.name }}</span>
|
<span class="traffic-item__title">{{ item.name }}</span>
|
||||||
<countup
|
<span :class="{
|
||||||
:class="{
|
|
||||||
'traffic-item__value--primary': item.type == 0,
|
'traffic-item__value--primary': item.type == 0,
|
||||||
'traffic-item__value--success': item.type == 1,
|
'traffic-item__value--success': item.type == 1,
|
||||||
'traffic-item__value--error': item.type == 2
|
'traffic-item__value--error': item.type == 2
|
||||||
}"
|
}"> {{item.value}}</span>
|
||||||
:end-val="item.value"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Title1 title="景区信息" />
|
<Title1 title="景区智能AI分析" />
|
||||||
<div class="scenic">
|
<div class="scenic">
|
||||||
<div class="scenic-item" v-for="(item, index) in scenicSpotData.headList" :key="index">
|
<div class="scenic-item" v-for="(item, index) in scenicSpotData.headList" :key="index">
|
||||||
<span class="scenic-item__label">{{ item.name }}</span>
|
<span class="scenic-item__label">{{ item.name }}</span>
|
||||||
<countup class="scenic-item__value" :end-val="item.value" />
|
<!-- <countup class="scenic-item__value" :end-val="item.value" />-->
|
||||||
|
<span class="scenic-item__value"> {{item.value}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex pt-20">
|
<div class="flex pt-20">
|
||||||
@@ -35,7 +33,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Title1 title="交通信息" />
|
<Title1 title="交通智能AI分析" />
|
||||||
<div class="scenic">
|
<div class="scenic">
|
||||||
<div
|
<div
|
||||||
class="scenic-item"
|
class="scenic-item"
|
||||||
@@ -43,7 +41,8 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<span class="scenic-item__label">{{ item.name }}</span>
|
<span class="scenic-item__label">{{ item.name }}</span>
|
||||||
<countup class="scenic-item__value" :end-val="item.value" />
|
<!-- <countup class="scenic-item__value" :end-val="item.value" />-->
|
||||||
|
<span class="scenic-item__value"> {{item.value}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex pt-20">
|
<div class="flex pt-20">
|
||||||
@@ -75,6 +74,12 @@
|
|||||||
src="@/assets/images/sxzd.png"
|
src="@/assets/images/sxzd.png"
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
|
<img
|
||||||
|
v-if="scenicSpotId == '龙桥河'"
|
||||||
|
class="map-img"
|
||||||
|
src="@/assets/images/lqh.jpg"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div class="monitor">
|
<div class="monitor">
|
||||||
@@ -89,7 +94,30 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<span class="monitor-statistics-item__label">{{ item.name }}</span>
|
<span class="monitor-statistics-item__label">{{ item.name }}</span>
|
||||||
<countup class="monitor-statistics-item__value" :end-val="item.value" />
|
<div class="monitor-statistics-item__value" v-if="index==0">
|
||||||
|
<span v-if="scenicSpotId=='root000000'">
|
||||||
|
550
|
||||||
|
</span>
|
||||||
|
<span v-else-if="scenicSpotId=='三峡之巅'">
|
||||||
|
295
|
||||||
|
</span>
|
||||||
|
<span v-else-if="scenicSpotId=='龙桥河'">
|
||||||
|
54
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="monitor-statistics-item__value" v-if="index==1">
|
||||||
|
<span v-if="scenicSpotId=='root000000'">
|
||||||
|
28
|
||||||
|
</span>
|
||||||
|
<span v-else-if="scenicSpotId=='三峡之巅'">
|
||||||
|
28
|
||||||
|
</span>
|
||||||
|
<span v-else-if="scenicSpotId=='龙桥河'">
|
||||||
|
5
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="monitor-statistics-item__value" v-if="index==2">调试中</div>
|
||||||
|
<!-- <countup class="monitor-statistics-item__value" :end-val="item.value" />-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bg">
|
<div class="bg">
|
||||||
@@ -109,7 +137,8 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<span class="traffic-alarm-statistics-item__label">{{ item.name }}</span>
|
<span class="traffic-alarm-statistics-item__label">{{ item.name }}</span>
|
||||||
<countup class="traffic-alarm-statistics-item__value" :end-val="item.value" />
|
<div class="traffic-alarm-statistics-item__value">调试中</div>
|
||||||
|
<!-- <countup class="traffic-alarm-statistics-item__value" :end-val="item.value" />-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bg">
|
<div class="bg">
|
||||||
@@ -438,7 +467,7 @@
|
|||||||
gap: vw(20);
|
gap: vw(20);
|
||||||
|
|
||||||
&-item {
|
&-item {
|
||||||
width: vw(142);
|
width: vw(182);
|
||||||
height: vw(106);
|
height: vw(106);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -9,7 +9,12 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
@click="handleNav(index)"
|
@click="handleNav(index)"
|
||||||
>
|
>
|
||||||
|
<span v-if="!params.businessScenicArea && index==0">
|
||||||
|
核心路段
|
||||||
|
</span>
|
||||||
|
<span v-else>
|
||||||
{{ item.dictLabel }}
|
{{ item.dictLabel }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bom-box">
|
<div class="bom-box">
|
||||||
|
|||||||
@@ -14,24 +14,21 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<div class="label">接待状态</div>
|
<div class="label">游览舒适度</div>
|
||||||
<p class="value">安全</p>
|
<p class="value">舒适</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="label">景区安全</div>
|
<div class="label">景区安全</div>
|
||||||
<p class="value">安全</p>
|
<p class="value">安全</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
|
||||||
<div class="label">景区游玩舒适</div>
|
|
||||||
<p class="value error">排队</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
<div>
|
||||||
<div class="label">通景交通</div>
|
<div class="label">通景交通</div>
|
||||||
<p class="value">安全</p>
|
<p class="value">畅通</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="label">停车场负荷度</div>
|
<div class="label">停车场负荷度</div>
|
||||||
<p class="value error">超负荷</p>
|
<p class="value error">调试中</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,11 +4,11 @@
|
|||||||
<div class="box mr-8">
|
<div class="box mr-8">
|
||||||
<Title1 title="排队信息" />
|
<Title1 title="排队信息" />
|
||||||
<div class="count-box flex justify-between">
|
<div class="count-box flex justify-between">
|
||||||
<count-item
|
<!-- <count-item-->
|
||||||
label="今日出票"
|
<!-- label="今日出票"-->
|
||||||
:count="scenicStore.scenicQueueData.header.jrcp"
|
<!-- :count="scenicStore.scenicQueueData.header.jrcp"-->
|
||||||
suffix="张"
|
<!-- suffix="张"-->
|
||||||
/>
|
<!-- />-->
|
||||||
<count-item
|
<count-item
|
||||||
label="今日接待人数"
|
label="今日接待人数"
|
||||||
:count="scenicStore.scenicQueueData.header.jrjdrs"
|
:count="scenicStore.scenicQueueData.header.jrjdrs"
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-1 mr-8">
|
<div class="box-1 mr-8">
|
||||||
<Title1 title="停车信息" />
|
<Title1 title="停车信息(调试中)" />
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div class="height70 flex flex-1">
|
<div class="height70 flex flex-1">
|
||||||
<circle-progress
|
<circle-progress
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="ml-20 flex flex-1 justify-between">
|
<div class="ml-20 flex flex-1 justify-between">
|
||||||
<count-item label="总车位数" :count="scenicStore.stopCarData.info.count" suffix="个" />
|
<count-item label="总停车场" :count="scenicStore.stopCarData.info.count" suffix="个" />
|
||||||
<count-item
|
<count-item
|
||||||
label="剩余车位数"
|
label="剩余车位数"
|
||||||
:count="scenicStore.stopCarData.info.remain"
|
:count="scenicStore.stopCarData.info.remain"
|
||||||
@@ -98,13 +98,13 @@
|
|||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div class="border mr-8 flex-1">
|
<div class="border mr-8 flex-1">
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
<Title3 title="今日景区车流量" />
|
<Title3 title="今日景区车流量(调试中)" />
|
||||||
</div>
|
</div>
|
||||||
<Line :width="360" :height="300" :data="carBearData" :xAxisData="carBearXAxisData" />
|
<Line :width="360" :height="300" :data="carBearData" :xAxisData="carBearXAxisData" />
|
||||||
</div>
|
</div>
|
||||||
<div class="border flex-1">
|
<div class="border flex-1">
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
<Title3 title="车辆归属地占比" />
|
<Title3 title="车辆归属地占比(调试中)" />
|
||||||
</div>
|
</div>
|
||||||
<PieRow
|
<PieRow
|
||||||
label="停车总数"
|
label="停车总数"
|
||||||
@@ -117,7 +117,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-2">
|
<div class="box-2">
|
||||||
<Title1 title="安全信息 " />
|
<Title1 title="安全信息(调试中) " />
|
||||||
<div class="count-box flex">
|
<div class="count-box flex">
|
||||||
<count-item
|
<count-item
|
||||||
v-for="item in scenicStore.secureData.headList"
|
v-for="item in scenicStore.secureData.headList"
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="border flex-1">
|
<div class="border flex-1">
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
<Title3 title="异常告警占比" />
|
<Title3 title="异常告警占比(调试中)" />
|
||||||
</div>
|
</div>
|
||||||
<PieRow
|
<PieRow
|
||||||
label="告警总数"
|
label="告警总数"
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex mt-8">
|
<div class="flex mt-8">
|
||||||
<div class="box-3 mr-8">
|
<div class="box-3 mr-8">
|
||||||
<Title1 title="交通信息" />
|
<Title1 title="交通信息(调试中)" />
|
||||||
<div class="count-box flex">
|
<div class="count-box flex">
|
||||||
<count-item
|
<count-item
|
||||||
v-for="(item, index) in scenicStore.trafficData.infoList"
|
v-for="(item, index) in scenicStore.trafficData.infoList"
|
||||||
@@ -185,7 +185,6 @@
|
|||||||
<div class="border mr-8 flex-1">
|
<div class="border mr-8 flex-1">
|
||||||
<Title3 title="年龄/性别占比" />
|
<Title3 title="年龄/性别占比" />
|
||||||
<age :list="scenicStore.userPortraitData.data.ageRate" />
|
<age :list="scenicStore.userPortraitData.data.ageRate" />
|
||||||
<div class="count">总人数:<countup :end-val="ageTotal" /></div>
|
|
||||||
<div
|
<div
|
||||||
class="cell pt-20"
|
class="cell pt-20"
|
||||||
v-for="(item, index) in scenicStore.userPortraitData.data.genderRate"
|
v-for="(item, index) in scenicStore.userPortraitData.data.genderRate"
|
||||||
@@ -220,7 +219,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="border flex-1">
|
<div class="border flex-1">
|
||||||
<Title3 title="购票来源" />
|
<Title3 title="购票来源" />
|
||||||
<div class="count">总人数:<countup :end-val="channelTotal" /></div>
|
|
||||||
<TicketSource
|
<TicketSource
|
||||||
:list="scenicStore.userPortraitData.data.channel"
|
:list="scenicStore.userPortraitData.data.channel"
|
||||||
:width="240"
|
:width="240"
|
||||||
@@ -239,8 +237,7 @@
|
|||||||
<span>总数:</span>
|
<span>总数:</span>
|
||||||
<countup
|
<countup
|
||||||
:end-val="
|
:end-val="
|
||||||
scenicStore.carShipData.car.count?.drivingCount +
|
scenicStore.carShipData.car.count?.drivingCount +scenicStore.carShipData.car.count?.nonDrivingCount
|
||||||
scenicStore.carShipData.car.count?.nonDrivingCount
|
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -34,6 +34,7 @@
|
|||||||
<div class="chart-item">
|
<div class="chart-item">
|
||||||
<Title3 title="拥堵频次占比" />
|
<Title3 title="拥堵频次占比" />
|
||||||
<div class="chart__inner">
|
<div class="chart__inner">
|
||||||
|
<div>
|
||||||
<spotRate
|
<spotRate
|
||||||
:dataList="chartData.roadNum"
|
:dataList="chartData.roadNum"
|
||||||
:total="chartData.totalNum"
|
:total="chartData.totalNum"
|
||||||
@@ -48,9 +49,11 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="chart-item">
|
<div class="chart-item">
|
||||||
<Title3 title="拥堵时长占比" />
|
<Title3 title="拥堵时长占比" />
|
||||||
<div class="chart__inner">
|
<div class="chart__inner">
|
||||||
|
<div>
|
||||||
<spotRate
|
<spotRate
|
||||||
:dataList="chartData.roadTime"
|
:dataList="chartData.roadTime"
|
||||||
:total="chartData.totalTime"
|
:total="chartData.totalTime"
|
||||||
@@ -65,9 +68,11 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="chart-item">
|
<div class="chart-item">
|
||||||
<Title3 title="拥堵类型频次占比" />
|
<Title3 title="拥堵类型频次占比" />
|
||||||
<div class="chart__inner">
|
<div class="chart__inner">
|
||||||
|
<div>
|
||||||
<spotRate :dataList="chartData.typeNum" :total="chartData.totalNum" label="拥堵总数" />
|
<spotRate :dataList="chartData.typeNum" :total="chartData.totalNum" label="拥堵总数" />
|
||||||
<ul class="chart__legend">
|
<ul class="chart__legend">
|
||||||
<li class="chart__legend-item" v-for="(item, index) in chartData.typeNum" :key="index">
|
<li class="chart__legend-item" v-for="(item, index) in chartData.typeNum" :key="index">
|
||||||
@@ -78,9 +83,11 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="chart-item">
|
<div class="chart-item">
|
||||||
<Title3 title="拥堵类型时长占比" />
|
<Title3 title="拥堵类型时长占比" />
|
||||||
<div class="chart__inner">
|
<div class="chart__inner">
|
||||||
|
<div>
|
||||||
<spotRate :dataList="chartData.typeTime" :total="chartData.totalTime" label="拥堵总数" />
|
<spotRate :dataList="chartData.typeTime" :total="chartData.totalTime" label="拥堵总数" />
|
||||||
<ul class="chart__legend">
|
<ul class="chart__legend">
|
||||||
<li class="chart__legend-item" v-for="(item, index) in chartData.typeTime" :key="index">
|
<li class="chart__legend-item" v-for="(item, index) in chartData.typeTime" :key="index">
|
||||||
@@ -93,6 +100,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
@@ -140,7 +148,7 @@
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.box-1 {
|
.box-1 {
|
||||||
margin-top: vh(120);
|
margin-top: vh(120);
|
||||||
width: vw(826);
|
width: vw(626);
|
||||||
height: vh(950);
|
height: vh(950);
|
||||||
background: linear-gradient(321deg, #0b2f64 0%, #062b57 100%);
|
background: linear-gradient(321deg, #0b2f64 0%, #062b57 100%);
|
||||||
|
|
||||||
@@ -151,24 +159,23 @@
|
|||||||
padding: 0 vw(8);
|
padding: 0 vw(8);
|
||||||
|
|
||||||
&-item {
|
&-item {
|
||||||
width: vw(400);
|
width: vw(300);
|
||||||
background-image: url('@/assets/images/bg-3.png');
|
background-image: url('@/assets/images/bg-3.png');
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__inner {
|
&__inner {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
justify-content: center;
|
||||||
height: vh(380);
|
height: vh(380);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__legend {
|
&__legend {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
||||||
&-item {
|
&-item {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: vh(40);
|
height: vh(30);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: vh(8);
|
margin-bottom: vh(8);
|
||||||
|
|||||||
@@ -189,7 +189,7 @@
|
|||||||
.traffic-map {
|
.traffic-map {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 9;
|
z-index: 9;
|
||||||
width: vw(1300);
|
width: vw(1500);
|
||||||
height: vh(955);
|
height: vh(955);
|
||||||
margin-left: vw(8);
|
margin-left: vw(8);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|||||||
@@ -101,6 +101,6 @@
|
|||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.spotRate {
|
.spotRate {
|
||||||
width: vw(200);
|
width: vw(200);
|
||||||
height: vh(320);
|
height: vh(260);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user