openatc-components 0.0.105 → 0.0.106
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/Channelization/Channelization.vue +1 -12
- package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +0 -1
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +0 -11
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/Channelization/Channelization.vue +1 -12
- package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +0 -1
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +0 -11
- package/src/views/intersection.vue +1 -1
|
@@ -70,10 +70,6 @@ export default {
|
|
|
70
70
|
AgentId: {
|
|
71
71
|
type: String,
|
|
72
72
|
default: '0'
|
|
73
|
-
},
|
|
74
|
-
resizeMap: { // 重新获取容器大小,调整底图大小
|
|
75
|
-
type: Boolean,
|
|
76
|
-
default: false
|
|
77
73
|
}
|
|
78
74
|
},
|
|
79
75
|
watch: {
|
|
@@ -120,13 +116,6 @@ export default {
|
|
|
120
116
|
this.load('all')
|
|
121
117
|
},
|
|
122
118
|
deep: true
|
|
123
|
-
},
|
|
124
|
-
resizeMap: {
|
|
125
|
-
handler: function (newval, oldval) {
|
|
126
|
-
if (newval === true && oldval === false) {
|
|
127
|
-
this.getParentSize()
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
119
|
}
|
|
131
120
|
},
|
|
132
121
|
data () {
|
|
@@ -353,7 +342,7 @@ export default {
|
|
|
353
342
|
this.handleReset()
|
|
354
343
|
return new Promise((resolve, reject) => {
|
|
355
344
|
getChannelizatonChart(this.AgentId).then(data => {
|
|
356
|
-
this.$emit('getChannelizationSetting', data)
|
|
345
|
+
// this.$emit('getChannelizationSetting', data)
|
|
357
346
|
if (!data.data.success) {
|
|
358
347
|
// let parrenterror = getMessageByCode(data.data.code, this.$i18n.locale)
|
|
359
348
|
// if (data.data.data) {
|
package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue
CHANGED
|
@@ -241,7 +241,6 @@ export default {
|
|
|
241
241
|
this.handleReset()
|
|
242
242
|
return new Promise((resolve, reject) => {
|
|
243
243
|
getChannelizatonChart(this.AgentId).then(data => {
|
|
244
|
-
this.$emit('getChannelizationSetting', data)
|
|
245
244
|
if (!data.data.success) {
|
|
246
245
|
// let parrenterror = getMessageByCode(data.data.code, this.$i18n.locale)
|
|
247
246
|
// if (data.data.data) {
|
|
@@ -95,10 +95,6 @@ export default {
|
|
|
95
95
|
controlName: {
|
|
96
96
|
type: String,
|
|
97
97
|
default: ''
|
|
98
|
-
},
|
|
99
|
-
resizeMap: { // 重新获取容器大小,调整底图大小
|
|
100
|
-
type: Boolean,
|
|
101
|
-
default: false
|
|
102
98
|
}
|
|
103
99
|
},
|
|
104
100
|
watch: {
|
|
@@ -110,13 +106,6 @@ export default {
|
|
|
110
106
|
},
|
|
111
107
|
// 深度观察监听
|
|
112
108
|
deep: true
|
|
113
|
-
},
|
|
114
|
-
resizeMap: {
|
|
115
|
-
handler: function (newval, oldval) {
|
|
116
|
-
if (newval === true && oldval === false) {
|
|
117
|
-
this.getParentSize()
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
109
|
}
|
|
121
110
|
},
|
|
122
111
|
created () {
|