openatc-components 0.0.78 → 0.0.79
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.
|
@@ -155,12 +155,12 @@ export default {
|
|
|
155
155
|
ip: {
|
|
156
156
|
type: String
|
|
157
157
|
},
|
|
158
|
-
allPatternList: {
|
|
159
|
-
|
|
160
|
-
},
|
|
161
|
-
overlap: {
|
|
162
|
-
|
|
163
|
-
},
|
|
158
|
+
// allPatternList: {
|
|
159
|
+
// type: Array
|
|
160
|
+
// },
|
|
161
|
+
// overlap: {
|
|
162
|
+
// type: Array
|
|
163
|
+
// },
|
|
164
164
|
platform: {
|
|
165
165
|
type: String
|
|
166
166
|
},
|
|
@@ -189,6 +189,8 @@ export default {
|
|
|
189
189
|
crossStatusData: null,
|
|
190
190
|
controlData: {},
|
|
191
191
|
control: '',
|
|
192
|
+
allPatternList: [],
|
|
193
|
+
overlap: [],
|
|
192
194
|
sidewalkPhaseData: [],
|
|
193
195
|
list: [{
|
|
194
196
|
iconClass: 'model',
|
|
@@ -351,6 +353,8 @@ export default {
|
|
|
351
353
|
// 获取路口信息
|
|
352
354
|
getIntersectionInfo(agentid).then(res => {
|
|
353
355
|
this.patternAll = res.data.data.param.patternList
|
|
356
|
+
this.allPatternList = res.data.data.param.patternList
|
|
357
|
+
this.overlap = res.data.data.param.overlaplList
|
|
354
358
|
this.patternSelect = res.data.data.param.patternList.map(item => {
|
|
355
359
|
return {
|
|
356
360
|
value: item.id,
|