openatc-components 0.4.61 → 0.4.63
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/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +6 -2
- package/package/kisscomps/components/IntersectionMapDirSelect/customCrossDiagram.vue +711 -0
- package/package/kisscomps/components/IntersectionMapDirSelect/customintersectionmap.vue +188 -0
- package/package/kisscomps/components/IntersectionMapDirSelect/index.js +2 -0
- package/package/kisscomps/index.js +3 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +19 -0
- package/src/i18n/language/zh.js +19 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +6 -2
- package/src/kisscomps/components/IntersectionMapDirSelect/customCrossDiagram.vue +711 -0
- package/src/kisscomps/components/IntersectionMapDirSelect/customintersectionmap.vue +188 -0
- package/src/kisscomps/components/IntersectionMapDirSelect/index.js +2 -0
- package/src/kisscomps/index.js +3 -1
- package/src/views/intersection.vue +15 -5
- package/src/utils/errorcode.js +0 -231
package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue
CHANGED
|
@@ -75,7 +75,7 @@ export default {
|
|
|
75
75
|
watch: {
|
|
76
76
|
Data: {
|
|
77
77
|
handler: function (val) {
|
|
78
|
-
if (this.isVipRoute) {
|
|
78
|
+
if (this.isVipRoute || this.customClick) {
|
|
79
79
|
this.handleStatus()
|
|
80
80
|
}
|
|
81
81
|
if (this.lastStatus === '') {
|
|
@@ -131,6 +131,10 @@ export default {
|
|
|
131
131
|
isVipRoute: {
|
|
132
132
|
type: Boolean,
|
|
133
133
|
default: false
|
|
134
|
+
},
|
|
135
|
+
customClick: { // 自定义点击事件,跳过特勤限制
|
|
136
|
+
type: Boolean,
|
|
137
|
+
default: false
|
|
134
138
|
}
|
|
135
139
|
},
|
|
136
140
|
methods: {
|
|
@@ -179,7 +183,7 @@ export default {
|
|
|
179
183
|
}
|
|
180
184
|
},
|
|
181
185
|
mounted () {
|
|
182
|
-
if (this.isVipRoute) {
|
|
186
|
+
if (this.isVipRoute || this.customClick) {
|
|
183
187
|
this.handleStatus()
|
|
184
188
|
this.IconAddEvent()
|
|
185
189
|
}
|