openatc-components 0.3.79 → 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/IntersectionMap/crossDirection/crossDiagram.vue +11 -10
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +1 -1
- package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +0 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +11 -10
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +1 -1
- package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +0 -2
- package/src/views/intersection.vue +1 -1
- package/src/views/overView.vue +1 -1
|
@@ -306,20 +306,19 @@ export default {
|
|
|
306
306
|
this.handleDefaultStatus()
|
|
307
307
|
}
|
|
308
308
|
},
|
|
309
|
-
roadDirection: {
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
},
|
|
309
|
+
// roadDirection: {
|
|
310
|
+
// handler: function (val1, val2) {
|
|
311
|
+
// if (val1 !== val2) {
|
|
312
|
+
// this.init()
|
|
313
|
+
// }
|
|
314
|
+
// }
|
|
315
|
+
// },
|
|
316
316
|
agentId: {
|
|
317
317
|
handler: function (val1, val2) {
|
|
318
318
|
if (val1 !== val2 && val2 !== undefined) {
|
|
319
319
|
this.init()
|
|
320
320
|
}
|
|
321
|
-
}
|
|
322
|
-
immediate: true
|
|
321
|
+
}
|
|
323
322
|
}
|
|
324
323
|
},
|
|
325
324
|
data () {
|
|
@@ -1314,7 +1313,9 @@ export default {
|
|
|
1314
1313
|
}
|
|
1315
1314
|
},
|
|
1316
1315
|
mounted () {
|
|
1317
|
-
this.
|
|
1316
|
+
if (this.agentId !== undefined) {
|
|
1317
|
+
this.init()
|
|
1318
|
+
}
|
|
1318
1319
|
}
|
|
1319
1320
|
}
|
|
1320
1321
|
</script>
|
package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue
CHANGED
|
@@ -242,7 +242,6 @@ export default {
|
|
|
242
242
|
_this.port = String(devParams.port)
|
|
243
243
|
_this.protocol = res.data.data.protocol
|
|
244
244
|
_this.agentId = res.data.data.agentid
|
|
245
|
-
console.log('%%%%%%', res.data.data)
|
|
246
245
|
if (res.data.data.name) {
|
|
247
246
|
_this.agentName = res.data.data.name
|
|
248
247
|
}
|
|
@@ -485,7 +484,6 @@ export default {
|
|
|
485
484
|
}
|
|
486
485
|
},
|
|
487
486
|
created () {
|
|
488
|
-
this.agentId = this.AgentId
|
|
489
487
|
this.setDialogWidth()
|
|
490
488
|
this.setHost(this.reqUrl)
|
|
491
489
|
this.controlFormat = new ControlFormat()
|