openatc-components 0.3.80 → 0.3.81
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/DirectionListConfiguration/DirectionListConfiguration.vue +5 -7
- 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/IntersectionMap/crossDirection/crossDiagram.vue +14 -12
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +9 -5
- package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +2 -4
- package/package/kisscomps/components/OverviewComponent/index.js +2 -0
- package/package/kisscomps/components/OverviewComponent/index.vue +794 -0
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +28 -4
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
- package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +21 -1
- package/package/kisscomps/index.js +3 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +7 -0
- package/src/i18n/language/zh.js +7 -0
- package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +5 -7
- 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/IntersectionMap/crossDirection/crossDiagram.vue +14 -12
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +9 -5
- package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +2 -4
- package/src/kisscomps/components/OverviewComponent/index.js +2 -0
- package/src/kisscomps/components/OverviewComponent/index.vue +794 -0
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +28 -4
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
- package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +21 -1
- package/src/kisscomps/index.js +3 -1
- package/src/utils/conflct.js +24 -33
- package/src/views/intersection.vue +6 -5
- package/src/views/intersection2.vue +2 -2
- package/src/views/overView.vue +17 -4
- 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/kisscomps/components/OptimizeKanban/index.js +0 -2
- package/package/kisscomps/components/OptimizeKanban/index.vue +0 -369
- package/src/node_modules/.package_versions.json +0 -1
package/package.json
CHANGED
package/src/i18n/language/en.js
CHANGED
|
@@ -1370,6 +1370,13 @@ const en = {
|
|
|
1370
1370
|
'yes': 'Yes',
|
|
1371
1371
|
'no': 'No'
|
|
1372
1372
|
},
|
|
1373
|
+
'overviewcomponent': {
|
|
1374
|
+
'patternstate': 'Pattern State',
|
|
1375
|
+
'cycle': 'Cycle',
|
|
1376
|
+
'patternoffset': 'Pattern offset',
|
|
1377
|
+
'coordinationtime': 'Offset',
|
|
1378
|
+
'overLap': 'Over Lap'
|
|
1379
|
+
},
|
|
1373
1380
|
'channelizationmap': {
|
|
1374
1381
|
'importpicture': 'Import Picture',
|
|
1375
1382
|
'importtip': 'The picture format is SVG, PNG and JPG, and the size is no more than 10MB',
|
package/src/i18n/language/zh.js
CHANGED
|
@@ -1370,6 +1370,13 @@ const zh = {
|
|
|
1370
1370
|
'yes': '是',
|
|
1371
1371
|
'no': '否'
|
|
1372
1372
|
},
|
|
1373
|
+
'overviewcomponent': {
|
|
1374
|
+
'patternstate': '方案状态',
|
|
1375
|
+
'cycle': '周期',
|
|
1376
|
+
'patternoffset': '相位差',
|
|
1377
|
+
'coordinationtime': '协调时间',
|
|
1378
|
+
'overLap': '跟随相位'
|
|
1379
|
+
},
|
|
1373
1380
|
'channelizationmap': {
|
|
1374
1381
|
'importpicture': '导入图片',
|
|
1375
1382
|
'importtip': '图片格式为svg、png、jpg,大小不超过10Mb',
|
|
@@ -256,13 +256,11 @@ export default {
|
|
|
256
256
|
handleRepeatRealdir (channelList) {
|
|
257
257
|
let map = new Map()
|
|
258
258
|
channelList.forEach(ele => {
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
})
|
|
265
|
-
}
|
|
259
|
+
ele.realdir.forEach(dir => {
|
|
260
|
+
if (map.get(dir) === undefined) {
|
|
261
|
+
map.set(dir, ele)
|
|
262
|
+
}
|
|
263
|
+
})
|
|
266
264
|
})
|
|
267
265
|
let arr = Array.from(map)
|
|
268
266
|
let newarr = []
|