mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
Merge 120735fb39074918abce07111fd3e8be9b08cfb3 into 6858a9ad67483025f6a9432a926beb9327037be3
This commit is contained in:
commit
eb9d13ece6
@ -61,6 +61,16 @@ export default {
|
|||||||
top = maxDragDomTop
|
top = maxDragDomTop
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 当前元素宽度大于浏览器窗口宽度时,则将其向左偏移左侧可拖拽长度
|
||||||
|
if (maxDragDomLeft < 0) {
|
||||||
|
left = -minDragDomLeft
|
||||||
|
}
|
||||||
|
|
||||||
|
// 当前元素高度大于浏览器窗口高度时,则将其向上偏移顶侧可拖拽长度
|
||||||
|
if (maxDragDomTop < 0) {
|
||||||
|
top = -minDragDomTop
|
||||||
|
}
|
||||||
|
|
||||||
// 移动当前元素
|
// 移动当前元素
|
||||||
dragDom.style.cssText += `;left:${left + styL}px;top:${top + styT}px;`
|
dragDom.style.cssText += `;left:${left + styL}px;top:${top + styT}px;`
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user