openatc-components 0.3.98 → 0.3.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,24 +11,9 @@
|
|
|
11
11
|
**/
|
|
12
12
|
<template>
|
|
13
13
|
<div class="container-main">
|
|
14
|
-
<div
|
|
15
|
-
<intersection-base-map
|
|
16
|
-
v-if="curHomePage === 'Graphical'"
|
|
17
|
-
ref="intersectionMap"
|
|
18
|
-
:stateName="stateName"
|
|
19
|
-
:crossStatusData="crossStatusData"
|
|
20
|
-
:agentId="agentId"
|
|
21
|
-
:roadDirection="roadDirection" />
|
|
22
|
-
<channelization
|
|
23
|
-
v-if="curHomePage === 'Channelization'"
|
|
24
|
-
ref="channelization"
|
|
25
|
-
:AgentId="agentId"
|
|
26
|
-
:crossStatusData="crossStatusData"
|
|
27
|
-
:detectorStatusData="detectorStatusData" />
|
|
28
|
-
</div>
|
|
29
|
-
<div v-if="!onlyShowIntersectionMap" :style="{'transform': `scale(${shrink})`, 'transform-origin': 'left top', 'height': '100%'}">
|
|
14
|
+
<div class="overview-component-content" :style="{'transform': `scale(${shrink})`, 'transform-origin': 'left top', 'height': '100%'}">
|
|
30
15
|
<div class="tuxingjiemian" v-show="curHomePage === 'Graphical' || curHomePage === 'Channelization'" :class="{'minifont': curBodyWidth <= 650}">
|
|
31
|
-
<div
|
|
16
|
+
<div :class="{'changeWidth': graphicMode, 'tuxing-left': !onlyShowIntersectionMap}" ref="tuxingLeft">
|
|
32
17
|
<intersection-base-map
|
|
33
18
|
v-if="curHomePage === 'Graphical'"
|
|
34
19
|
ref="intersectionMap"
|
|
@@ -42,7 +27,7 @@
|
|
|
42
27
|
:AgentId="agentId"
|
|
43
28
|
:crossStatusData="crossStatusData"
|
|
44
29
|
:detectorStatusData="detectorStatusData" />
|
|
45
|
-
<div class="pattern-status" v-if="!graphicMode && crossStatusData.control !== 1 && crossStatusData.control !== 2 && crossStatusData.control !== 3">
|
|
30
|
+
<div class="pattern-status" v-if="!graphicMode && !onlyShowIntersectionMap && crossStatusData.control !== 1 && crossStatusData.control !== 2 && crossStatusData.control !== 3">
|
|
46
31
|
<div class="pattern-name cross-mess">{{$t('openatccomponents.overviewcomponent.patternstate')}}</div>
|
|
47
32
|
<div class="pattern-message">({{$t('openatccomponents.overviewcomponent.cycle')}}: {{controlData.cycle}} {{$t('openatccomponents.overviewcomponent.patternoffset')}}: {{controlData.patternoffset}} {{$t('openatccomponents.overviewcomponent.coordinationtime')}}: {{controlData.offset}})</div>
|
|
48
33
|
<span class="pattern-explain"><el-checkbox v-model="checked">{{$t('openatccomponents.overviewcomponent.overLap')}}</el-checkbox></span>
|
|
@@ -106,7 +91,7 @@
|
|
|
106
91
|
</div>
|
|
107
92
|
</div>
|
|
108
93
|
|
|
109
|
-
<div ref="tuxingRight" class="tuxing-right">
|
|
94
|
+
<div ref="tuxingRight" class="tuxing-right" v-if="!onlyShowIntersectionMap">
|
|
110
95
|
<scheme-config
|
|
111
96
|
ref="rightpanel"
|
|
112
97
|
:statusData="crossStatusData"
|