openatc-components 0.0.37 → 0.0.39-hotfix
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/IntersectionMap/crossDirection/crossDiagram.vue +16 -0
- package/package/kisscomps/components/OverLap/OverLap.vue +2 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/icons/iconfont.css +827 -0
- package/src/icons/iconfont.js +1 -0
- package/src/icons/iconfont.json +1430 -0
- package/src/icons/iconfont.ttf +0 -0
- package/src/icons/iconfont.woff +0 -0
- package/src/icons/iconfont.woff2 +0 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +16 -0
- package/src/kisscomps/components/OverLap/OverLap.vue +2 -1
- package/src/main.js +1 -0
- package/src/views/intersection.vue +6 -3
- package/src/views/schemeconfig.vue +5 -5
|
@@ -288,6 +288,13 @@ export default {
|
|
|
288
288
|
this.init()
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
+
},
|
|
292
|
+
agentId: {
|
|
293
|
+
handler: function (val1, val2) {
|
|
294
|
+
if (val1 !== val2) {
|
|
295
|
+
this.init()
|
|
296
|
+
}
|
|
297
|
+
}
|
|
291
298
|
}
|
|
292
299
|
},
|
|
293
300
|
data () {
|
|
@@ -417,6 +424,15 @@ export default {
|
|
|
417
424
|
}))
|
|
418
425
|
this.comdireBusPhaseData = JSON.parse(JSON.stringify(comdireBusPhaseData))
|
|
419
426
|
}
|
|
427
|
+
if (this.mainType === '103') {
|
|
428
|
+
if (this.LanePhaseData.length) {
|
|
429
|
+
const LanePhaseData = this.LanePhaseData.map(data => ({
|
|
430
|
+
...data,
|
|
431
|
+
color: this.phaseControlColorMap.get(Control)
|
|
432
|
+
}))
|
|
433
|
+
this.LanePhaseData = JSON.parse(JSON.stringify(LanePhaseData))
|
|
434
|
+
}
|
|
435
|
+
}
|
|
420
436
|
},
|
|
421
437
|
createPhaseStatusMap () {
|
|
422
438
|
// 生成相位id和相位状态对应数据结构
|