openatc-components 0.2.14 → 0.2.15

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.
@@ -47,7 +47,8 @@ export default {
47
47
  },
48
48
  data () {
49
49
  return {
50
- overlapDatas: []
50
+ overlapDatas: [],
51
+ max: ''
51
52
  }
52
53
  },
53
54
  props: {
@@ -67,6 +68,10 @@ export default {
67
68
  type: Boolean,
68
69
  default: false
69
70
  },
71
+ cycleChange: {
72
+ type: Boolean,
73
+ default: true
74
+ },
70
75
  cycle: {
71
76
  type: Number
72
77
  },
@@ -82,6 +87,13 @@ export default {
82
87
  // 深度观察监听
83
88
  deep: true
84
89
  },
90
+ cycleChange: {
91
+ handler: function (val, oldVal) {
92
+ this.doAdd(this.stageList, this.overlap)
93
+ },
94
+ // 深度观察监听
95
+ deep: true
96
+ },
85
97
  stageList: {
86
98
  handler: function (val, oldVal) {
87
99
  this.doAdd(this.stageList, this.overlap)
@@ -140,6 +152,15 @@ export default {
140
152
  if (findItems.length) findIndexs.push(...findItems.map(m => m.key))
141
153
  })
142
154
  findIndexs = Array.from(new Set(findIndexs))
155
+ if (this.cycleChange) {
156
+ const globalParamModel = this.$store.getters.globalParamModel
157
+ let pattern = globalParamModel.getParamsByType('patternList')
158
+ const allCycle = pattern.map(item => item.cycle)
159
+ let cycle = Math.max(...allCycle)
160
+ this.max = cycle
161
+ } else {
162
+ this.max = ''
163
+ }
143
164
  return {
144
165
  ...item,
145
166
  peddirection: this.getPedPhasePos(item.peddirection),
@@ -150,8 +171,8 @@ export default {
150
171
  ...sta,
151
172
  direction: this.getRoad(item),
152
173
  // peddirection: this.getPedPhasePos(item.peddirection),
153
- greenWidth: find ? (sta.split / this.cycle * 100).toFixed(3) + '%' : '0%',
154
- redWidth: !find ? (sta.split / this.cycle * 100).toFixed(3) + '%' : '0%'
174
+ greenWidth: find ? (sta.split / (this.max ? this.max : this.cycle) * 100).toFixed(3) + '%' : '0%',
175
+ redWidth: !find ? (sta.split / (this.max ? this.max : this.cycle) * 100).toFixed(3) + '%' : '0%'
155
176
  }
156
177
  })
157
178
  }
@@ -432,9 +432,9 @@ export default {
432
432
  },
433
433
  getStage () {
434
434
  if (!this.stagesChange) return
435
- // const globalParamModel = this.$store.getters.globalParamModel
436
- // let pattern = globalParamModel.getParamsByType('patternList')
437
- let mapAdd = this.allPatternList.map(item => item.stagesList).map(item => {
435
+ const globalParamModel = this.$store.getters.globalParamModel
436
+ let pattern = globalParamModel.getParamsByType('patternList')
437
+ let mapAdd = (this.allPatternList ? this.allPatternList : pattern).map(item => item.stagesList).map(item => {
438
438
  return item.map(val => {
439
439
  return val.stageSplit ? val.stageSplit : val.split
440
440
  })
@@ -1052,9 +1052,9 @@ export default {
1052
1052
  this.fillGap(ringTeams, val)
1053
1053
  }
1054
1054
  if (this.cycleChange) {
1055
- // const globalParamModel = this.$store.getters.globalParamModel
1056
- // let pattern = globalParamModel.getParamsByType('patternList')
1057
- const allCycle = this.patternList.map(item => item.cycle)
1055
+ const globalParamModel = this.$store.getters.globalParamModel
1056
+ let pattern = globalParamModel.getParamsByType('patternList')
1057
+ const allCycle = pattern.map(item => item.cycle)
1058
1058
  let cycle = Math.max(...allCycle)
1059
1059
  this.max = cycle
1060
1060
  } else {
@@ -1063,7 +1063,7 @@ export default {
1063
1063
  let barrier = this.step2(ringTeams, newPattern)
1064
1064
  let barrierLeft = barrier.map(item => item)// 屏障左移显示出人行横道
1065
1065
  this.barrierList = barrierLeft.map(j => {
1066
- return (j / (this.max ? this.max : this.newCycle) * 100) + '%'
1066
+ return (j / (this.max ? this.max : cycle) * 100) + '%'
1067
1067
  })
1068
1068
  // this.barrierList.unshift(0)
1069
1069
  }