openatc-components 0.3.66 → 0.3.67
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.
|
@@ -80,11 +80,11 @@ export default {
|
|
|
80
80
|
data () {
|
|
81
81
|
return {
|
|
82
82
|
showStyle: {
|
|
83
|
-
left: '
|
|
83
|
+
left: '2px',
|
|
84
84
|
top: '0px'
|
|
85
85
|
},
|
|
86
86
|
styles: {
|
|
87
|
-
left: '
|
|
87
|
+
left: '1px',
|
|
88
88
|
top: '0px'
|
|
89
89
|
},
|
|
90
90
|
typeOptions: [{
|
|
@@ -101,6 +101,9 @@ export default {
|
|
|
101
101
|
type: String,
|
|
102
102
|
default: 'Header'
|
|
103
103
|
},
|
|
104
|
+
id: {
|
|
105
|
+
type: Number
|
|
106
|
+
},
|
|
104
107
|
rings: {
|
|
105
108
|
type: Object
|
|
106
109
|
},
|
|
@@ -213,7 +216,7 @@ export default {
|
|
|
213
216
|
}
|
|
214
217
|
}
|
|
215
218
|
}
|
|
216
|
-
this.$emit('optimizesucess')
|
|
219
|
+
this.$emit('optimizesucess', this.id)
|
|
217
220
|
}
|
|
218
221
|
}).catch(error => {
|
|
219
222
|
console.log(error)
|
|
@@ -237,7 +240,7 @@ export default {
|
|
|
237
240
|
}
|
|
238
241
|
}
|
|
239
242
|
}
|
|
240
|
-
this.$emit('optimizesucess')
|
|
243
|
+
this.$emit('optimizesucess', this.id)
|
|
241
244
|
}
|
|
242
245
|
}).catch(error => {
|
|
243
246
|
console.log(error)
|