openatc-components 0.1.150 → 0.1.152
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.
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
<!-- 环模式true -->
|
|
15
15
|
<div v-if="this.contrloType === 'ring' || !this.contrloType">
|
|
16
16
|
<div class="ring-first" v-for="(list, index1) in patternInfo" :key="index1">
|
|
17
|
-
<div style="position: relative;" :style="{'height': '34px','float':'left','width':((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100)
|
|
18
|
-
<div class="first-1" :class="item.mode===8?'masks': ''" :style="{'width':Number(item.greenWidth.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100)
|
|
17
|
+
<div style="position: relative;" :style="{'height': '34px','float':'left','width':((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100) + '%'}" v-for="(item,index2) in list" :key="index2" :class="item.mode===7?'direction': ''">
|
|
18
|
+
<div class="first-1" :class="item.mode===8?'masks': ''" :style="{'width':Number(item.greenWidth.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100) + '%').replace('%', ''))*100+'%','height':'34px','background':'#7ccc66'}">
|
|
19
19
|
<el-tooltip placement="top-start" effect="light">
|
|
20
20
|
<div slot="content">P{{item.id}}:{{item.split}}</div>
|
|
21
21
|
<div style="cursor:pointer;">
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
41
|
<div class="first-1" :class="item.mode===8?'masks': ''" :style="{'width':Number(item.flashgreen.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100).toFixed(3) + '%').replace('%', ''))*100+'%','height':'34px','float':'left','background': 'linear-gradient(to right, #ffffff 50%, #7ccc66 0)','background-size': '4px 100%'}"></div>
|
|
42
|
-
<div class="first-1" :class="item.mode===8?'masks': ''" :style="{'width':Number(item.yellowWidth.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100)
|
|
42
|
+
<div class="first-1" :class="item.mode===8?'masks': ''" :style="{'width':Number(item.yellowWidth.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100) + '%').replace('%', ''))*100+'%','height':'34px','background':'#f9dc6a'}"></div>
|
|
43
43
|
<div class="first-1" :class="item.mode===8?'masks': ''" :style="{'width':Number(item.redWidth.replace('%', ''))/Number((((item.split+(item.sum?item.sum:0)) / (max?max:item.cycle) * 100).toFixed(3) + '%').replace('%', ''))*100+'%','height':'34px','background':'#f27979'}"></div>
|
|
44
44
|
</div>
|
|
45
45
|
</div>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
<div v-if="this.contrloType === 'stage'">
|
|
57
57
|
<div v-for="(list, index1) in stageLists" :key="index1">
|
|
58
58
|
<!-- <div> -->
|
|
59
|
-
<div class="first-1" :style="{'width':list.greenWidth,'height':'34px','background':'#7ccc66'}">
|
|
59
|
+
<div class="first-1" :style="{'width':list.greenWidth,'height':'34px','position':'relative','background':'#7ccc66'}">
|
|
60
60
|
<el-tooltip placement="top-start" effect="light">
|
|
61
61
|
<div slot="content">
|
|
62
62
|
<span class="ring-nums" v-for="(pha,index) in list.phases" :key="index">
|
|
@@ -68,6 +68,10 @@
|
|
|
68
68
|
<!-- <patternwalksvg :showWalk="list.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
69
69
|
<xdrdirselector Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="list.direction"></xdrdirselector>
|
|
70
70
|
</div>
|
|
71
|
+
<div class="box" style="position: absolute; left:41px; top:-1px;">
|
|
72
|
+
<div class="ring-nums">S{{list.key+1}}</div>
|
|
73
|
+
<div class="ring-nums">{{list.stageSplit}}</div>
|
|
74
|
+
</div>
|
|
71
75
|
<!-- <div class="box" style="line-height:28px">
|
|
72
76
|
<span class="ring-nums" v-for="(pha,index) in list.phases" :key="index">
|
|
73
77
|
P:{{pha}}
|
|
@@ -568,13 +572,13 @@ export default {
|
|
|
568
572
|
obj.cycle = cycle
|
|
569
573
|
if (ring.sum) {
|
|
570
574
|
obj.sum = ring.sum
|
|
571
|
-
obj.redWidth = ((currPhase.redclear + ring.sum) / (this.max ? this.max : cycle) * 100)
|
|
575
|
+
obj.redWidth = ((currPhase.redclear + ring.sum) / (this.max ? this.max : cycle) * 100) + '%'
|
|
572
576
|
} else {
|
|
573
|
-
obj.redWidth = (currPhase.redclear / (this.max ? this.max : cycle) * 100)
|
|
577
|
+
obj.redWidth = (currPhase.redclear / (this.max ? this.max : cycle) * 100) + '%'
|
|
574
578
|
}
|
|
575
|
-
obj.flashgreen = (currPhase.flashgreen / (this.max ? this.max : cycle) * 100)
|
|
576
|
-
obj.yellowWidth = (currPhase.yellow / (this.max ? this.max : cycle) * 100)
|
|
577
|
-
obj.greenWidth = ((split - currPhase.redclear - currPhase.yellow - currPhase.flashgreen) / (this.max ? this.max : cycle) * 100)
|
|
579
|
+
obj.flashgreen = (currPhase.flashgreen / (this.max ? this.max : cycle) * 100) + '%'
|
|
580
|
+
obj.yellowWidth = (currPhase.yellow / (this.max ? this.max : cycle) * 100) + '%'
|
|
581
|
+
obj.greenWidth = ((split - currPhase.redclear - currPhase.yellow - currPhase.flashgreen) / (this.max ? this.max : cycle) * 100) + '%'
|
|
578
582
|
// 忽略相位不显示
|
|
579
583
|
// let mode = ring.mode
|
|
580
584
|
// if (mode !== 7) { // 忽略相位不显示
|
|
@@ -809,13 +813,13 @@ export default {
|
|
|
809
813
|
obj.cycle = cycle
|
|
810
814
|
if (ring.sum) {
|
|
811
815
|
obj.sum = ring.sum
|
|
812
|
-
obj.redWidth = ((currPhase.redclear + ring.sum) / (this.max ? this.max : cycle) * 100)
|
|
816
|
+
obj.redWidth = ((currPhase.redclear + ring.sum) / (this.max ? this.max : cycle) * 100) + '%'
|
|
813
817
|
} else {
|
|
814
|
-
obj.redWidth = (currPhase.redclear / (this.max ? this.max : cycle) * 100)
|
|
818
|
+
obj.redWidth = (currPhase.redclear / (this.max ? this.max : cycle) * 100) + '%'
|
|
815
819
|
}
|
|
816
|
-
obj.flashgreen = (currPhase.flashgreen / (this.max ? this.max : cycle) * 100)
|
|
817
|
-
obj.yellowWidth = (currPhase.yellow / (this.max ? this.max : cycle) * 100)
|
|
818
|
-
obj.greenWidth = ((split - currPhase.redclear - currPhase.yellow - currPhase.flashgreen) / (this.max ? this.max : cycle) * 100)
|
|
820
|
+
obj.flashgreen = (currPhase.flashgreen / (this.max ? this.max : cycle) * 100) + '%'
|
|
821
|
+
obj.yellowWidth = (currPhase.yellow / (this.max ? this.max : cycle) * 100) + '%'
|
|
822
|
+
obj.greenWidth = ((split - currPhase.redclear - currPhase.yellow - currPhase.flashgreen) / (this.max ? this.max : cycle) * 100) + '%'
|
|
819
823
|
// 忽略相位不显示
|
|
820
824
|
// let mode = ring.mode
|
|
821
825
|
// if (mode !== 7) { // 忽略相位不显示
|
|
@@ -1019,14 +1023,14 @@ export default {
|
|
|
1019
1023
|
obj.cycle = cycle
|
|
1020
1024
|
if (ring.sum) {
|
|
1021
1025
|
obj.sum = ring.sum
|
|
1022
|
-
obj.redWidth = ((currPhase.redclear + ring.sum) / (this.max ? this.max : cycle) * 100)
|
|
1026
|
+
obj.redWidth = ((currPhase.redclear + ring.sum) / (this.max ? this.max : cycle) * 100) + '%'
|
|
1023
1027
|
} else {
|
|
1024
|
-
obj.redWidth = (currPhase.redclear / (this.max ? this.max : cycle) * 100)
|
|
1028
|
+
obj.redWidth = (currPhase.redclear / (this.max ? this.max : cycle) * 100) + '%'
|
|
1025
1029
|
}
|
|
1026
1030
|
obj.mode = ring.mode
|
|
1027
|
-
obj.greenWidth = ((split - currPhase.redclear - currPhase.yellow - currPhase.flashgreen) / (this.max ? this.max : cycle) * 100)
|
|
1028
|
-
obj.flashgreen = (currPhase.flashgreen / (this.max ? this.max : cycle) * 100)
|
|
1029
|
-
obj.yellowWidth = (currPhase.yellow / (this.max ? this.max : cycle) * 100)
|
|
1031
|
+
obj.greenWidth = ((split - currPhase.redclear - currPhase.yellow - currPhase.flashgreen) / (this.max ? this.max : cycle) * 100) + '%'
|
|
1032
|
+
obj.flashgreen = (currPhase.flashgreen / (this.max ? this.max : cycle) * 100) + '%'
|
|
1033
|
+
obj.yellowWidth = (currPhase.yellow / (this.max ? this.max : cycle) * 100) + '%'
|
|
1030
1034
|
// 忽略相位不显示
|
|
1031
1035
|
// let mode = ring.mode
|
|
1032
1036
|
// if (mode !== 7) { // 忽略相位不显示
|