zydx-plus 1.34.462 → 1.34.463
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.json
CHANGED
|
@@ -142,7 +142,6 @@ export default {
|
|
|
142
142
|
this.footRightOffset = val
|
|
143
143
|
if (this.isInitShowBottomRight) {
|
|
144
144
|
this.x = window.innerWidth - val
|
|
145
|
-
console.log('this.x', this.x)
|
|
146
145
|
}
|
|
147
146
|
},
|
|
148
147
|
immediate: true
|
|
@@ -175,7 +174,9 @@ export default {
|
|
|
175
174
|
this.$nextTick(() => {
|
|
176
175
|
this.$emit('updateDrag', {
|
|
177
176
|
width: this.footRightOffset,
|
|
178
|
-
height: this.footDownOffset - ((this.dragTextShow)?60:30)
|
|
177
|
+
height: this.footDownOffset - ((this.dragTextShow)?60:30),
|
|
178
|
+
left: this.x,
|
|
179
|
+
top: this.y
|
|
179
180
|
})
|
|
180
181
|
})
|
|
181
182
|
let popArr = []
|
|
@@ -277,7 +278,9 @@ export default {
|
|
|
277
278
|
}
|
|
278
279
|
this.$emit('updateDrag', {
|
|
279
280
|
width: this.footRightOffset,
|
|
280
|
-
height: this.footDownOffset - ((this.dragTextShow)?60:30)
|
|
281
|
+
height: this.footDownOffset - ((this.dragTextShow)?60:30),
|
|
282
|
+
left: this.x,
|
|
283
|
+
top: this.y
|
|
281
284
|
})
|
|
282
285
|
},
|
|
283
286
|
footUp() {
|
|
@@ -338,7 +341,9 @@ export default {
|
|
|
338
341
|
}
|
|
339
342
|
this.$emit('updateDrag', {
|
|
340
343
|
width: this.footRightOffset,
|
|
341
|
-
height: this.footDownOffset - ((this.dragTextShow)?60:30)
|
|
344
|
+
height: this.footDownOffset - ((this.dragTextShow)?60:30),
|
|
345
|
+
left: this.x,
|
|
346
|
+
top: this.y
|
|
342
347
|
})
|
|
343
348
|
this.$emit('enlarge', this.state)
|
|
344
349
|
},
|