openatc-components 0.1.2 → 0.1.3
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.
|
@@ -65,7 +65,7 @@ export default {
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
watch: {
|
|
68
|
-
|
|
68
|
+
// item: {
|
|
69
69
|
// handler: function (newval, oldval) {
|
|
70
70
|
// if ((JSON.stringify(oldval) !== '{}')) {
|
|
71
71
|
// // 更改原数据的位置大小数据
|
|
@@ -134,20 +134,20 @@ export default {
|
|
|
134
134
|
},
|
|
135
135
|
methods: {
|
|
136
136
|
boxDragStop (origin, final) {
|
|
137
|
-
let info = this.handleMinCountdownSize(final)
|
|
138
|
-
this.item = JSON.parse(JSON.stringify(
|
|
137
|
+
// let info = this.handleMinCountdownSize(final)
|
|
138
|
+
this.item = JSON.parse(JSON.stringify(final))
|
|
139
139
|
this.$emit('handleSelectIcon', this.CountdownData)
|
|
140
140
|
this.handleChangeData()
|
|
141
141
|
},
|
|
142
142
|
boxResizeStop (final) {
|
|
143
|
-
let info = this.handleMinCountdownSize(final)
|
|
143
|
+
// let info = this.handleMinCountdownSize(final)
|
|
144
144
|
// this.resetSvg()
|
|
145
|
-
this.item = JSON.parse(JSON.stringify(
|
|
145
|
+
this.item = JSON.parse(JSON.stringify(final))
|
|
146
146
|
this.handleChangeData()
|
|
147
147
|
},
|
|
148
148
|
boxRotateStop (origin, final) {
|
|
149
|
-
let info = this.handleMinCountdownSize(final)
|
|
150
|
-
this.item = JSON.parse(JSON.stringify(
|
|
149
|
+
// let info = this.handleMinCountdownSize(final)
|
|
150
|
+
this.item = JSON.parse(JSON.stringify(final))
|
|
151
151
|
this.handleChangeData()
|
|
152
152
|
},
|
|
153
153
|
resetSvg () {
|