openatc-components 0.0.101 → 0.0.104

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 (43) hide show
  1. package/package/kisscomps/components/BoardCard/BoardCard.vue +6 -1
  2. package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +349 -0
  3. package/package/kisscomps/components/ChannelizationFlowStatistic/index.js +2 -0
  4. package/package/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +12 -0
  5. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +22 -24
  6. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +22 -3
  7. package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +83 -17
  8. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +8 -8
  9. package/package/kisscomps/components/KanBan/kanban.vue +7 -7
  10. package/package/kisscomps/components/PatternStatus/PatternStatus.vue +153 -38
  11. package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +16 -0
  12. package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +190 -0
  13. package/package/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -0
  14. package/package/kisscomps/components/StageStatus/StageStatus.vue +6 -2
  15. package/package/kisscomps/components/patternList/patternList.vue +5 -0
  16. package/package/kisscomps/index.js +4 -0
  17. package/package/kissui.min.js +1 -1
  18. package/package.json +13 -12
  19. package/src/i18n/language/en.js +29 -1
  20. package/src/i18n/language/zh.js +29 -1
  21. package/src/kisscomps/components/BoardCard/BoardCard.vue +6 -1
  22. package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +349 -0
  23. package/src/kisscomps/components/ChannelizationFlowStatistic/index.js +2 -0
  24. package/src/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +12 -0
  25. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +22 -24
  26. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +22 -3
  27. package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +83 -17
  28. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +8 -8
  29. package/src/kisscomps/components/KanBan/kanban.vue +7 -7
  30. package/src/kisscomps/components/PatternStatus/PatternStatus.vue +153 -38
  31. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +16 -0
  32. package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +190 -0
  33. package/src/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -0
  34. package/src/kisscomps/components/StageStatus/StageStatus.vue +6 -2
  35. package/src/kisscomps/components/patternList/patternList.vue +5 -0
  36. package/src/kisscomps/index.js +4 -0
  37. package/src/router/index.js +7 -8
  38. package/src/views/customchannelization.vue +1 -1
  39. package/src/views/intersection.vue +67 -43
  40. package/src/views/schemeconfig.vue +2 -2
  41. package/static/styles/channelizatioon.scss +9 -0
  42. package/static/styles/commonkanban.scss +27 -27
  43. package/static/styles/schemeconfig.scss +52 -0
@@ -1,86 +1,86 @@
1
1
  // 公共面板组件通用样式
2
2
  .common-board-column {
3
- min-width: 180px;
4
- min-height: 100px;
5
- max-width: 350px;
3
+ min-width: 180PX;
4
+ min-height: 100PX;
5
+ max-width: 350PX;
6
6
  height: auto;
7
7
  overflow: hidden;
8
8
  // background: #f0f0f0;
9
- // border: 1px solid $--border-color-base;
9
+ // border: 1PX solid $--border-color-base;
10
10
  .common-phase-description {
11
11
  position: relative;
12
12
  background: rgb(217, 236, 255);
13
- width: 42px;
14
- height: 40px;
13
+ width: 42PX;
14
+ height: 40PX;
15
15
  }
16
16
 
17
17
 
18
18
  .common-board-column-header {
19
- line-height: 40px;
19
+ line-height: 40PX;
20
20
  overflow: hidden;
21
21
  text-align: center;
22
22
  background: $--color-primary;
23
23
  color: #FFFFFF;
24
- height: 40px;
24
+ height: 40PX;
25
25
  }
26
26
  .common-board-table-header {
27
- height: 42px;
27
+ height: 42PX;
28
28
  overflow: hidden;
29
29
  text-align: center;
30
- margin-bottom: -20px;
31
- font-size: 14px;
30
+ margin-bottom: -20PX;
31
+ font-size: 14PX;
32
32
  color: $--color-info;
33
33
  background-color: $--color-black;
34
- border: 20px solid transparent;
35
- border-bottom-width: 0px;
34
+ border: 20PX solid transparent;
35
+ border-bottom-width: 0PX;
36
36
  .common-titlecolumn {
37
37
  float: left;
38
38
  text-align: left;
39
39
  }
40
40
  .phase {
41
- width: 50px;
41
+ width: 50PX;
42
42
  }
43
43
  .mode {
44
- width: calc(100% - 50px)
44
+ width: calc(100% - 50PX)
45
45
  }
46
46
  }
47
47
 
48
48
  .common-board-column-content {
49
49
  height: auto;
50
50
  overflow: hidden;
51
- border: 10px solid transparent;
52
- min-height: 60px;
51
+ border: 10PX solid transparent;
52
+ min-height: 60PX;
53
53
  display: flex;
54
54
  justify-content: flex-start;
55
55
  flex-direction: column;
56
56
  align-items: center;
57
57
  background-color: $--color-black;
58
- border-width: 20px;
59
- border-top-width: 16px;
60
- border-bottom-width: 15px;
58
+ border-width: 20PX;
59
+ border-top-width: 16PX;
60
+ border-bottom-width: 15PX;
61
61
  .common-contentcolumn {
62
62
  float: left;
63
63
  }
64
64
  .phase {
65
- width: 40px;
65
+ width: 40PX;
66
66
  }
67
67
  .mode {
68
- margin-left: 10px;
69
- width: calc(100% - 50px);
68
+ margin-left: 10PX;
69
+ width: calc(100% - 50PX);
70
70
  }
71
71
 
72
72
  .common-board-item {
73
73
  cursor: pointer;
74
74
  width: 100%;
75
- height: 40px;
76
- margin-top: 10px;
75
+ height: 40PX;
76
+ margin-top: 10PX;
77
77
  text-align: left;
78
78
  box-sizing: border-box;
79
79
  .el-input {
80
80
  width: 100%;
81
81
  .el-input__inner {
82
- height: 40px;
83
- line-height: 40px;
82
+ height: 40PX;
83
+ line-height: 40PX;
84
84
  }
85
85
  }
86
86
  }
@@ -273,6 +273,58 @@
273
273
  color: $--color-text-secondary;
274
274
  }
275
275
  }
276
+ .priority-control{
277
+ height: 100%;
278
+ padding: 21px 0px 21px 28px;
279
+ min-width: 360px;
280
+ overflow: auto;
281
+ .title {
282
+ margin-bottom: 24px;
283
+ font-size: 20px;
284
+ font-weight: 400;
285
+ line-height: 22px;
286
+ color: $--color-text-primary;
287
+ span {
288
+ font-size: 14px;
289
+ font-weight: 400;
290
+ color: $--color-text-secondary;
291
+ }
292
+ }
293
+ .footer {
294
+ float: right;
295
+ margin: 38px 24px 40px 0;
296
+ button {
297
+ width: 56px;
298
+ height: 32px;
299
+ padding: 0;
300
+ text-align: center;
301
+ line-height: 30px;
302
+ font-size: 12px;
303
+ font-weight: normal;
304
+ font-stretch: normal;
305
+ }
306
+ }
307
+ .el-input--mini{
308
+ width: 90%;
309
+ }
310
+ .el-form-item {
311
+ margin-bottom: 0px;
312
+ }
313
+ .el-form-item__label {
314
+ font-size: 14px;
315
+ font-weight: 400;
316
+ color: $--color-text-secondary;
317
+ }
318
+ .el-select {
319
+ width: 90%;
320
+ }
321
+ .el-input-number {
322
+ width: 100%;
323
+ .el-input__inner {
324
+ text-align: left;
325
+ }
326
+ }
327
+ }
276
328
  .tentativeplan-control{
277
329
  height: 100%;
278
330
  padding: 21px 0px 21px 28px;