openatc-components 0.0.23 → 0.0.26
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.
- package/config/index.js +1 -1
- package/package/kisscomps/components/BoardCard/BoardCard.vue +4 -0
- package/package/kisscomps/components/ExpendConfig/ExpendConfig.vue +93 -0
- package/package/kisscomps/components/ExpendConfig/index.js +2 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +22 -0
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +16 -12
- package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +244 -4
- package/package/kisscomps/components/KanBan/index.js +2 -0
- package/package/kisscomps/components/KanBan/kanban.vue +219 -0
- package/package/kisscomps/components/OverLap/OverLap.vue +11 -1
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +14 -3
- package/package/kisscomps/components/PhaseMarker/index.js +6 -0
- package/package/kisscomps/components/PhaseMarker/phasemarker.vue +215 -0
- package/package/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -0
- package/package/kisscomps/components/PhaseMarker/svg/phase.vue +60 -0
- package/package/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -0
- package/package/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -0
- package/package/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -0
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +30 -3
- package/package/kisscomps/components/SchemeConfig/manualControlModal/index.vue +21 -2
- package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +5 -47
- package/package/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +1304 -0
- package/package/kisscomps/components/StageBord/StageBord.vue +242 -0
- package/package/kisscomps/components/StageBord/index.js +2 -0
- package/package/kisscomps/components/StageStatus/StageStatus.vue +4 -2
- package/package/kisscomps/components/Stages/index.vue +86 -0
- package/package/kisscomps/components/overView/index.vue +656 -0
- package/package/kisscomps/components/patternList/patternList.vue +4 -0
- package/package/kisscomps/index.js +15 -1
- package/package/kissui.min.js +1 -1
- package/package.json +2 -2
- package/src/api/authapi.js +1 -1
- package/src/i18n/language/en.js +4 -1
- package/src/i18n/language/zh.js +4 -1
- package/src/icons/svg/tentativeplan.svg +33 -0
- package/src/kisscomps/components/BoardCard/BoardCard.vue +4 -0
- package/src/kisscomps/components/ExpendConfig/ExpendConfig.vue +93 -0
- package/src/kisscomps/components/ExpendConfig/index.js +2 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +22 -0
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +16 -12
- package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +244 -4
- package/src/kisscomps/components/KanBan/index.js +2 -0
- package/src/kisscomps/components/KanBan/kanban.vue +219 -0
- package/src/kisscomps/components/OverLap/OverLap.vue +11 -1
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +14 -3
- package/src/kisscomps/components/PhaseMarker/index.js +6 -0
- package/src/kisscomps/components/PhaseMarker/phasemarker.vue +215 -0
- package/src/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -0
- package/src/kisscomps/components/PhaseMarker/svg/phase.vue +60 -0
- package/src/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -0
- package/src/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -0
- package/src/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -0
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +30 -3
- package/src/kisscomps/components/SchemeConfig/manualControlModal/index.vue +21 -2
- package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +5 -47
- package/src/kisscomps/components/SchemeConfig/tentativeplancontrolmodal/index.vue +1304 -0
- package/src/kisscomps/components/StageBord/StageBord.vue +242 -0
- package/src/kisscomps/components/StageBord/index.js +2 -0
- package/src/kisscomps/components/StageStatus/StageStatus.vue +4 -2
- package/src/kisscomps/components/Stages/index.vue +86 -0
- package/src/kisscomps/components/overView/index.vue +656 -0
- package/src/kisscomps/components/patternList/patternList.vue +4 -0
- package/src/kisscomps/index.js +15 -1
- package/src/lib/publicjs/KissApi.js +2 -0
- package/src/main.js +2 -0
- package/src/router/index.js +15 -8
- package/src/utils/ControlFormat.js +68 -0
- package/src/utils/RingDataModel.js +1 -1
- package/src/utils/auth.js +8 -0
- package/src/views/home.vue +16 -1
- package/src/views/intersection.vue +188 -6
- package/src/views/overView.vue +33 -0
- package/src/views/schemeconfig.vue +6 -5
- package/static/styles/common.scss +2 -0
- package/static/styles/intersection.scss +18 -0
- package/static/styles/overview.scss +372 -0
- package/static/styles/schemeconfig.scss +99 -1
- package/static/styles/stages.scss +65 -0
|
@@ -11,6 +11,13 @@ import PatternStatus from './components/PatternStatus/index'
|
|
|
11
11
|
import BoardCard from './components/BoardCard/index'
|
|
12
12
|
import StageStatus from './components/StageStatus/index'
|
|
13
13
|
import OverLap from './components/OverLap/index'
|
|
14
|
+
import Stages from './components/Stages/index'
|
|
15
|
+
import PhaseMarker from './components/PhaseMarker/index'
|
|
16
|
+
import overView from './components/overView/index'
|
|
17
|
+
import KanBan from './components/KanBan/index'
|
|
18
|
+
import StageBord from './components/StageBord/index'
|
|
19
|
+
import ExpendConfig from './components/ExpendConfig/index'
|
|
20
|
+
import tentativeplancontrolmodal from './components/SchemeConfig/tentativeplancontrolmodal/index'
|
|
14
21
|
|
|
15
22
|
import en from '../i18n/language/en'
|
|
16
23
|
import zh from '../i18n/language/zh'
|
|
@@ -29,7 +36,14 @@ const components = {
|
|
|
29
36
|
OverLap,
|
|
30
37
|
StageStatus,
|
|
31
38
|
patternList,
|
|
32
|
-
CommonKanban
|
|
39
|
+
CommonKanban,
|
|
40
|
+
Stages,
|
|
41
|
+
PhaseMarker,
|
|
42
|
+
overView,
|
|
43
|
+
KanBan,
|
|
44
|
+
StageBord,
|
|
45
|
+
ExpendConfig,
|
|
46
|
+
tentativeplancontrolmodal
|
|
33
47
|
}
|
|
34
48
|
|
|
35
49
|
const language = {
|