openatc-components 0.3.62 → 0.3.67
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.
- package/package/kisscomps/components/BoardCard/BoardCard.vue +11 -0
- package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +46 -145
- package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
- package/package/kisscomps/components/OptimizeKanban/index.js +2 -0
- package/package/kisscomps/components/OptimizeKanban/index.vue +369 -0
- package/package/kisscomps/components/PatternOptimize/PatternOptimize.vue +11 -2
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +83 -8
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +0 -7
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +1 -1
- package/package/kisscomps/components/patternList/patternList.vue +11 -0
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +4 -2
- package/src/i18n/language/zh.js +4 -2
- package/src/kisscomps/components/BoardCard/BoardCard.vue +11 -0
- package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +46 -145
- package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
- package/src/kisscomps/components/PatternOptimize/PatternOptimize.vue +11 -2
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +83 -8
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +0 -7
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +1 -1
- package/src/kisscomps/components/patternList/patternList.vue +11 -0
- package/src/node_modules/.package_versions.json +1 -0
- package/static/styles/common.scss +3 -3
- package/static/styles/dark/theme/element-dark.scss +1 -1
- package/static/styles/intersection.scss +5 -15
- package/static/styles/light/theme/element-light.scss +1 -1
- package/static/styles/schemeconfig.scss +6 -3
package/package.json
CHANGED
package/src/i18n/language/en.js
CHANGED
|
@@ -110,9 +110,11 @@ const en = {
|
|
|
110
110
|
'signalID': 'Intersection ID',
|
|
111
111
|
'flow': 'Average lane flow (h)low',
|
|
112
112
|
'saturationflow': 'Planned lane saturation Flow(h)',
|
|
113
|
-
'typeflow-split-opt': 'Flow Split Op',
|
|
113
|
+
// 'typeflow-split-opt': 'Flow Split Op',
|
|
114
|
+
'typeflow-split-opt': 'Minimum delay',
|
|
115
|
+
'typecycle-opt': 'Optimal balance',
|
|
114
116
|
'maxFlow': 'The average lane flow is too large. Is it further optimized?',
|
|
115
|
-
'typecycle-opt': 'Cycle Opt',
|
|
117
|
+
// 'typecycle-opt': 'Cycle Opt',
|
|
116
118
|
'signalIP': 'Signal IP',
|
|
117
119
|
'stagecountdown': 'Stage Countdown',
|
|
118
120
|
'stageduration': 'Stage Duration',
|
package/src/i18n/language/zh.js
CHANGED
|
@@ -106,9 +106,11 @@ const zh = {
|
|
|
106
106
|
'crossinfo': '路口信息',
|
|
107
107
|
'flow': '车道平均流量(h)',
|
|
108
108
|
'saturationflow': '车道规划饱和流量(h)',
|
|
109
|
-
'typeflow-split-opt': '饱和绿信比优化',
|
|
109
|
+
// 'typeflow-split-opt': '饱和绿信比优化',
|
|
110
110
|
'maxFlow': '车道平均流量过大,是否继续优化?',
|
|
111
|
-
'typecycle-opt': '周期优化',
|
|
111
|
+
// 'typecycle-opt': '周期优化',
|
|
112
|
+
'typeflow-split-opt': '最小延误',
|
|
113
|
+
'typecycle-opt': '均衡度最优',
|
|
112
114
|
'crossname': '路口名称',
|
|
113
115
|
'divicestate': '设备状态',
|
|
114
116
|
'protocoltype': '协议类型',
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
:showBarrier="showBarrier"
|
|
12
12
|
:controlPhase="controlPhase"
|
|
13
13
|
:isShowTip="isShowTip"
|
|
14
|
+
:isMove="isMove"
|
|
14
15
|
:localPatternList="localPatternList"
|
|
15
16
|
:showCondition="showCondition"
|
|
16
17
|
:contrloType="contrloType"
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
:cycle="cycle"
|
|
25
26
|
:syncTime="syncTime"
|
|
26
27
|
:style="{'margin-top': '25px'}"
|
|
28
|
+
@handleSplitMove="handleSplitMove"
|
|
27
29
|
:patternStatusList="patternStatusList"
|
|
28
30
|
:patternId="patternId"
|
|
29
31
|
:cycles="cycles">
|
|
@@ -72,6 +74,10 @@ export default {
|
|
|
72
74
|
stagesChange: {
|
|
73
75
|
type: Array
|
|
74
76
|
},
|
|
77
|
+
isMove: {
|
|
78
|
+
type: Boolean,
|
|
79
|
+
default: true
|
|
80
|
+
},
|
|
75
81
|
isShowTip: {
|
|
76
82
|
type: Boolean,
|
|
77
83
|
default: true
|
|
@@ -108,6 +114,11 @@ export default {
|
|
|
108
114
|
syncTime: {
|
|
109
115
|
type: Number
|
|
110
116
|
}
|
|
117
|
+
},
|
|
118
|
+
methods: {
|
|
119
|
+
handleSplitMove (data) {
|
|
120
|
+
this.$emit('handleSplitMove', data)
|
|
121
|
+
}
|
|
111
122
|
}
|
|
112
123
|
}
|
|
113
124
|
</script>
|