openatc-components 0.3.73 → 0.3.74

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.
Files changed (30) hide show
  1. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +46 -145
  2. package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
  3. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +8 -3
  4. package/package/kisscomps/components/OverviewComponent/index.js +2 -0
  5. package/package/kisscomps/components/OverviewComponent/index.vue +794 -0
  6. package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +28 -18
  7. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
  8. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +1 -1
  9. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +21 -1
  10. package/package/kisscomps/index.js +3 -1
  11. package/package/kissui.min.js +1 -1
  12. package/package.json +1 -1
  13. package/src/i18n/language/en.js +7 -0
  14. package/src/i18n/language/zh.js +7 -0
  15. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +46 -145
  16. package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
  17. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +8 -3
  18. package/src/kisscomps/components/OverviewComponent/index.js +2 -0
  19. package/src/kisscomps/components/OverviewComponent/index.vue +794 -0
  20. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +28 -18
  21. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
  22. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +1 -1
  23. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +21 -1
  24. package/src/kisscomps/index.js +3 -1
  25. package/src/views/overView.vue +17 -4
  26. package/static/styles/common.scss +3 -3
  27. package/static/styles/dark/theme/element-dark.scss +1 -1
  28. package/static/styles/intersection.scss +5 -15
  29. package/static/styles/light/theme/element-light.scss +1 -1
  30. package/static/styles/schemeconfig.scss +6 -3
@@ -212,8 +212,8 @@ export default {
212
212
  Detector: [], // 管理所有检测器
213
213
  DetectorChart: [], // 管理所有检测器统计图
214
214
  motorwayicon: '',
215
- IconLengh: 60,
216
- IconWdith: 134,
215
+ IconLengh: 33,
216
+ IconWdith: 109,
217
217
  textareaW: 200,
218
218
  textareaH: 100,
219
219
  pedW: 206,
@@ -389,8 +389,8 @@ export default {
389
389
  h: this.IconWdith,
390
390
  angle: 0
391
391
  }
392
- this.IconLengh = 60
393
- this.IconWdith = 134
392
+ this.IconLengh = 33
393
+ this.IconWdith = 109
394
394
  let Motorwaysitem = {
395
395
  index: this.index,
396
396
  id: this.motorid,
@@ -155,6 +155,13 @@ export default {
155
155
  this.reset = true
156
156
  }
157
157
  }
158
+ },
159
+ agentId: {
160
+ handler: function (val1, val2) {
161
+ if (val1 !== val2) {
162
+ this.resetCrossDiagram()
163
+ }
164
+ }
158
165
  }
159
166
  },
160
167
  created () {
@@ -164,9 +171,7 @@ export default {
164
171
  },
165
172
  mounted () {
166
173
  this.getParentSize()
167
- if (this.isVipRoute || this.channelType) {
168
- this.reset = true
169
- }
174
+ this.reset = true
170
175
  },
171
176
  updated () {
172
177
  },
@@ -0,0 +1,2 @@
1
+ import OverviewComponent from './index.vue'
2
+ export default OverviewComponent