openatc-components 0.3.99 → 0.3.100
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 -0
- package/package/kisscomps/components/BoardCard/BoardCard.vue +0 -11
- package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +145 -46
- package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
- package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +7 -3
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +5 -0
- package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +17 -12
- package/package/kisscomps/components/OverviewComponent/index.vue +30 -33
- package/package/kisscomps/components/PatternOptimize/PatternOptimize.vue +2 -11
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +33 -92
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +31 -13
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +11 -9
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +6 -2
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +19 -6
- package/package/kisscomps/components/SchemeConfig/utils/thirdPartypermission.js +52 -0
- package/package/kisscomps/components/overView/index.vue +0 -23
- package/package/kisscomps/components/patternConfig/index.vue +1 -1
- package/package/kisscomps/components/patternConfig/pattern/patternTable.vue +33 -13
- package/package/kisscomps/components/patternConfig/planContent.vue +3 -3
- package/package/kisscomps/components/patternList/patternList.vue +0 -11
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/api/permission.js +33 -0
- package/src/i18n/language/en.js +3 -4
- package/src/i18n/language/zh.js +3 -4
- package/src/kisscomps/components/BoardCard/BoardCard.vue +0 -11
- package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +145 -46
- package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +7 -3
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +5 -0
- package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +17 -12
- package/src/kisscomps/components/OverviewComponent/index.vue +30 -33
- package/src/kisscomps/components/PatternOptimize/PatternOptimize.vue +2 -11
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +33 -92
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +31 -13
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +11 -9
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +6 -2
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +19 -6
- package/src/kisscomps/components/SchemeConfig/utils/thirdPartypermission.js +52 -0
- package/src/kisscomps/components/overView/index.vue +0 -23
- package/src/kisscomps/components/patternConfig/index.vue +1 -1
- package/src/kisscomps/components/patternConfig/pattern/patternTable.vue +33 -13
- package/src/kisscomps/components/patternConfig/planContent.vue +3 -3
- package/src/kisscomps/components/patternList/patternList.vue +0 -11
- package/src/views/intersection.vue +6 -7
- package/src/views/intersection2.vue +2 -2
- package/src/views/overView.vue +5 -23
- package/src/views/patternConfig.vue +38 -8
- package/src/views/schemeconfig.vue +4 -6
- package/static/apiconfig.json +10 -0
- package/static/styles/common.scss +3 -3
- package/static/styles/dark/theme/element-dark.scss +1 -1
- package/static/styles/intersection.scss +15 -5
- package/static/styles/light/theme/element-light.scss +1 -1
- package/static/styles/schemeconfig.scss +3 -6
package/config/index.js
CHANGED
|
@@ -17,6 +17,7 @@ module.exports = {
|
|
|
17
17
|
// target: 'https://dolphin-test.kedacom.com/openatc',
|
|
18
18
|
// target: 'http://192.168.13.105:11003/openatc',
|
|
19
19
|
target: 'http://192.168.13.103:10003/openatc',
|
|
20
|
+
// target: 'http://10.165.32.135:30555/openatc',
|
|
20
21
|
// target: 'http://192.168.15.11:8012/openatc',
|
|
21
22
|
// target: 'http://192.168.13.103:10003/openatc',
|
|
22
23
|
// target: 'http://192.168.13.103:9999',//'http://172.16.239.139:8080/',//设置你调用的接口域名和端口号
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
:showBarrier="showBarrier"
|
|
12
12
|
:controlPhase="controlPhase"
|
|
13
13
|
:isShowTip="isShowTip"
|
|
14
|
-
:isMove="isMove"
|
|
15
14
|
:localPatternList="localPatternList"
|
|
16
15
|
:showCondition="showCondition"
|
|
17
16
|
:contrloType="contrloType"
|
|
@@ -25,7 +24,6 @@
|
|
|
25
24
|
:cycle="cycle"
|
|
26
25
|
:syncTime="syncTime"
|
|
27
26
|
:style="{'margin-top': '25px'}"
|
|
28
|
-
@handleSplitMove="handleSplitMove"
|
|
29
27
|
:patternStatusList="patternStatusList"
|
|
30
28
|
:patternId="patternId"
|
|
31
29
|
:cycles="cycles">
|
|
@@ -74,10 +72,6 @@ export default {
|
|
|
74
72
|
stagesChange: {
|
|
75
73
|
type: Array
|
|
76
74
|
},
|
|
77
|
-
isMove: {
|
|
78
|
-
type: Boolean,
|
|
79
|
-
default: true
|
|
80
|
-
},
|
|
81
75
|
isShowTip: {
|
|
82
76
|
type: Boolean,
|
|
83
77
|
default: true
|
|
@@ -114,11 +108,6 @@ export default {
|
|
|
114
108
|
syncTime: {
|
|
115
109
|
type: Number
|
|
116
110
|
}
|
|
117
|
-
},
|
|
118
|
-
methods: {
|
|
119
|
-
handleSplitMove (data) {
|
|
120
|
-
this.$emit('handleSplitMove', data)
|
|
121
|
-
}
|
|
122
111
|
}
|
|
123
112
|
}
|
|
124
113
|
</script>
|