openatc-components 0.3.92 → 0.3.94

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 (41) hide show
  1. package/package/kisscomps/components/BoardCard/BoardCard.vue +4 -0
  2. package/package/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +1 -1
  3. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +145 -46
  4. package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
  5. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +10 -11
  6. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +7 -11
  7. package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +6 -5
  8. package/package/kisscomps/components/OverviewComponent/index.vue +25 -15
  9. package/package/kisscomps/components/PatternStatus/PatternStatus.vue +81 -1
  10. package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +4 -28
  11. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +11 -9
  12. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +1 -21
  13. package/package/kisscomps/components/patternList/patternList.vue +4 -0
  14. package/package/kisscomps/index.js +1 -3
  15. package/package/kissui.min.js +1 -1
  16. package/package.json +1 -1
  17. package/src/i18n/language/en.js +0 -7
  18. package/src/i18n/language/zh.js +0 -7
  19. package/src/kisscomps/components/BoardCard/BoardCard.vue +4 -0
  20. package/src/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +1 -1
  21. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +145 -46
  22. package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
  23. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +10 -11
  24. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +7 -11
  25. package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +6 -5
  26. package/src/kisscomps/components/PatternStatus/PatternStatus.vue +81 -1
  27. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +4 -28
  28. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +11 -9
  29. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +1 -21
  30. package/src/kisscomps/components/patternList/patternList.vue +4 -0
  31. package/src/kisscomps/index.js +1 -3
  32. package/src/views/intersection.vue +6 -7
  33. package/src/views/intersection2.vue +2 -2
  34. package/src/views/overView.vue +4 -17
  35. package/static/styles/common.scss +3 -3
  36. package/static/styles/dark/theme/element-dark.scss +1 -1
  37. package/static/styles/intersection.scss +15 -5
  38. package/static/styles/light/theme/element-light.scss +1 -1
  39. package/static/styles/schemeconfig.scss +3 -6
  40. package/src/kisscomps/components/OverviewComponent/index.js +0 -2
  41. package/src/kisscomps/components/OverviewComponent/index.vue +0 -794
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openatc-components",
3
- "version": "0.3.92",
3
+ "version": "0.3.94",
4
4
  "description": "A Vue.js project",
5
5
  "author": "openatc developer",
6
6
  "private": false,
@@ -1370,13 +1370,6 @@ const en = {
1370
1370
  'yes': 'Yes',
1371
1371
  'no': 'No'
1372
1372
  },
1373
- 'overviewcomponent': {
1374
- 'patternstate': 'Pattern State',
1375
- 'cycle': 'Cycle',
1376
- 'patternoffset': 'Pattern offset',
1377
- 'coordinationtime': 'Offset',
1378
- 'overLap': 'Over Lap'
1379
- },
1380
1373
  'channelizationmap': {
1381
1374
  'importpicture': 'Import Picture',
1382
1375
  'importtip': 'The picture format is SVG, PNG and JPG, and the size is no more than 10MB',
@@ -1370,13 +1370,6 @@ const zh = {
1370
1370
  'yes': '是',
1371
1371
  'no': '否'
1372
1372
  },
1373
- 'overviewcomponent': {
1374
- 'patternstate': '方案状态',
1375
- 'cycle': '周期',
1376
- 'patternoffset': '相位差',
1377
- 'coordinationtime': '协调时间',
1378
- 'overLap': '跟随相位'
1379
- },
1380
1373
  'channelizationmap': {
1381
1374
  'importpicture': '导入图片',
1382
1375
  'importtip': '图片格式为svg、png、jpg,大小不超过10Mb',
@@ -13,6 +13,7 @@
13
13
  :isShowTip="isShowTip"
14
14
  :localPatternList="localPatternList"
15
15
  :showCondition="showCondition"
16
+ :patternType="patternType"
16
17
  :contrloType="contrloType"
17
18
  :allPatternList="allPatternList"
18
19
  :stagesChange="stagesChange"
@@ -92,6 +93,9 @@ export default {
92
93
  patternId: {
93
94
  type: Number
94
95
  },
96
+ patternType: {
97
+ type: String
98
+ },
95
99
  agentId: {
96
100
  type: String
97
101
  },
@@ -237,7 +237,7 @@ export default {
237
237
  })
238
238
  },
239
239
  firstInit () {
240
- if (this.$route.query !== undefined && Object.keys(this.$route.query).length && this.$route.query.agentid !== undefined) {
240
+ if (this.$route.query !== undefined && Object.keys(this.$route.query).length) {
241
241
  this.agentId = this.$route.query.agentid
242
242
  setIframdevid(this.agentId)
243
243
  this.registerMessage() // 注册消息