openatc-components 0.1.52 → 0.1.54
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/ChannelizationWithInterface/ChannelizationWithInterface.vue +4 -4
- package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +5 -5
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +72 -0
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +4 -5
- package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +5 -6
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +51 -34
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +4 -5
- package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +5 -5
- package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +829 -564
- package/package/kisscomps/components/overView/index.vue +5 -7
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +4 -4
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +5 -5
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +72 -0
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +4 -5
- package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +5 -6
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +51 -34
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +4 -5
- package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +5 -5
- package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +829 -564
- package/src/kisscomps/components/overView/index.vue +5 -7
- package/src/node_modules/.package_versions.json +1 -0
- package/src/utils/RingDataModel.js +14 -9
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
:isShowState="isShowState"
|
|
33
33
|
:isShowMode="isShowMode"
|
|
34
34
|
:crossStatusData="crossStatusData"
|
|
35
|
-
:devStatus="devStatus"
|
|
36
35
|
:agentId="agentId"
|
|
37
36
|
:graphicMode="graphicMode"
|
|
38
37
|
:roadDirection="roadDirection" />
|
|
@@ -72,7 +71,6 @@
|
|
|
72
71
|
:statusData="crossStatusData"
|
|
73
72
|
:agentName="agentName"
|
|
74
73
|
:responseTime="responseTime"
|
|
75
|
-
:devStatus="devStatus"
|
|
76
74
|
:agentId="agentId"
|
|
77
75
|
:ip="ip"
|
|
78
76
|
:platform="platform"
|
|
@@ -164,7 +162,7 @@ export default {
|
|
|
164
162
|
ip: '--',
|
|
165
163
|
port: '--',
|
|
166
164
|
protocol: '--',
|
|
167
|
-
devStatus: 1,
|
|
165
|
+
// devStatus: 1,
|
|
168
166
|
mode: '2',
|
|
169
167
|
agentId: '0',
|
|
170
168
|
agentName: '--',
|
|
@@ -314,7 +312,7 @@ export default {
|
|
|
314
312
|
registerMessage () {
|
|
315
313
|
registerMessage(this.AgentId).then(data => {
|
|
316
314
|
if (!data.data.success) {
|
|
317
|
-
this.devStatus = 2
|
|
315
|
+
// this.devStatus = 2
|
|
318
316
|
let commomMsg = this.$t('openatccomponents.overview.signalID') + ' : ' + this.AgentId
|
|
319
317
|
let msg = getMessageByCode(data.data.code, this.$i18n.locale)
|
|
320
318
|
if (data.data.data) {
|
|
@@ -330,7 +328,7 @@ export default {
|
|
|
330
328
|
}
|
|
331
329
|
return
|
|
332
330
|
}
|
|
333
|
-
this.devStatus = 3
|
|
331
|
+
// this.devStatus = 3
|
|
334
332
|
this.clearPatternInterval() // 清除其他定时器
|
|
335
333
|
this.clearVolumeInterval()
|
|
336
334
|
this.phaseControlTimer = setInterval(() => {
|
|
@@ -346,7 +344,7 @@ export default {
|
|
|
346
344
|
})
|
|
347
345
|
},
|
|
348
346
|
reSend () { // 设备掉线重连机制
|
|
349
|
-
this.devStatus = 1
|
|
347
|
+
// this.devStatus = 1
|
|
350
348
|
this.clearRegisterMessageTimer()
|
|
351
349
|
this.registerMessageTimer = setTimeout(() => {
|
|
352
350
|
this.reconnectionDev()
|
|
@@ -381,7 +379,7 @@ export default {
|
|
|
381
379
|
if (!data.data.success) {
|
|
382
380
|
let commomMsg = this.$t('openatccomponents.overview.signalID') + ' : ' + this.AgentId
|
|
383
381
|
if (data.data.code === '4003') {
|
|
384
|
-
this.devStatus = 2
|
|
382
|
+
// this.devStatus = 2
|
|
385
383
|
this.clearPatternInterval() // 清除其他定时器
|
|
386
384
|
this.clearVolumeInterval()
|
|
387
385
|
this.$message.error(getMessageByCode(data.data.code, this.$i18n.locale) + ' - ' + commomMsg)
|