From f99d4702eb55578482ec2c566885bbe2f80e6bf7 Mon Sep 17 00:00:00 2001 From: yangl Date: Tue, 23 Aug 2022 13:54:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E5=85=B7=E6=A0=8F=E8=B0=83=E8=8A=82?= =?UTF-8?q?=E7=94=BB=E5=B8=83=E5=A4=A7=E5=B0=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../js/coe.team.pal.designer.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/js/coe.team.pal.designer.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/js/coe.team.pal.designer.js index 519a1233..d7e0aa4c 100644 --- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/js/coe.team.pal.designer.js +++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/js/coe.team.pal.designer.js @@ -327,9 +327,9 @@ $(function() { movingShapes = selected.concat(outlinkers); } if(movingShapes.length > 0 && contentWidth <= minPageWidth - 180*2) { - // 右移或左移 距左部120 默认padding 60 + // 右移或左移 距左部150 默认padding 60 Designer.op.moveShape(movingShapes, { - x : 180 - pos.left, + x : 210 - pos.left, y : 0 }); // 下移或上移 距顶部120 默认padding 60 @@ -343,9 +343,9 @@ $(function() { }); } if(movingShapes.length > 0 && contentWidth > minPageWidth - 180*2) { - // 右移或左移 距左部120 默认padding 60 + // 右移或左移 距左部150 默认padding 60 Designer.op.moveShape(movingShapes, { - x : 180 - pos.left, + x : 210 - pos.left, y : 0 }); // 下移或上移 距顶部120 默认padding 60 @@ -354,7 +354,7 @@ $(function() { y : 180 - pos.top }); Designer.setPageStyle({ - width: Math.trunc(contentWidth + 180*2), + width: Math.trunc(contentWidth + 210*2 ), height: Math.trunc(contentHeight + 180*2) }); }