diff --git a/src/components/Common/Typesetting/typesetting.js b/src/components/Common/Typesetting/typesetting.js index 3d10538..07498c8 100644 --- a/src/components/Common/Typesetting/typesetting.js +++ b/src/components/Common/Typesetting/typesetting.js @@ -453,7 +453,6 @@ const Typesetting = props => { ); // 计算左偏移 const calculateLeftPosition = (col, reference, isVertical, leftPosition, dYBJJ, dSLengthOffset) => { - console.log(isVertical,reference,'reference'); if (isVertical) { if (reference) { return col === 0 ? leftPosition : leftPosition + (dYBJJ * col); diff --git a/src/components/QuickQuote/index.jsx b/src/components/QuickQuote/index.jsx index e722a91..4f62c40 100644 --- a/src/components/QuickQuote/index.jsx +++ b/src/components/QuickQuote/index.jsx @@ -1216,7 +1216,6 @@ const QuickQuoteEvent = props => { // 入口 const QuickQuote = baseProps => { const props = QuickQuoteEvent(baseProps); - console.log("🚀 ~ QuickQuote:", props,baseProps) const [treeClassName, setTreeClassName] = useState(""); // 监听页面滚动事件 @@ -3372,7 +3371,6 @@ const GetBestAlgorithm = props => { const slaveRowData = slaveData.filter(item => item.sTreeNodeName === selectedNode.showName)[boxModelKey] || {}; if (!slaveRowData) return null; const { sColumnNameConfigExclusion } = slaveRowData; - console.log("🚀 ~ slaveRowData:", slaveRowData); const calcMethodData = commonUtils.convertStrToObj(sColumnNameConfigExclusion, []); let { dSBLB = 0, // 上边留白 @@ -3710,7 +3708,6 @@ const GetBestAlgorithm = props => { ); // 计算左偏移 const calculateLeftPosition = (col, reference, isVertical, leftPosition, dYBJJ, dSLengthOffset) => { - console.log(isVertical, reference, "reference"); if (isVertical) { if (reference) { return col === 0 ? leftPosition : leftPosition + dYBJJ * col;