Commit 1d6da65a267678b31b3b40d6a519d3261b4cf29a

Authored by 陈鑫涛
1 parent ce2b90b7

去除console

src/components/Common/Typesetting/typesetting.js
@@ -453,7 +453,6 @@ const Typesetting = props => { @@ -453,7 +453,6 @@ const Typesetting = props => {
453 ); 453 );
454 // 计算左偏移 454 // 计算左偏移
455 const calculateLeftPosition = (col, reference, isVertical, leftPosition, dYBJJ, dSLengthOffset) => { 455 const calculateLeftPosition = (col, reference, isVertical, leftPosition, dYBJJ, dSLengthOffset) => {
456 - console.log(isVertical,reference,'reference');  
457 if (isVertical) { 456 if (isVertical) {
458 if (reference) { 457 if (reference) {
459 return col === 0 ? leftPosition : leftPosition + (dYBJJ * col); 458 return col === 0 ? leftPosition : leftPosition + (dYBJJ * col);
src/components/QuickQuote/index.jsx
@@ -1216,7 +1216,6 @@ const QuickQuoteEvent = props => { @@ -1216,7 +1216,6 @@ const QuickQuoteEvent = props => {
1216 // 入口 1216 // 入口
1217 const QuickQuote = baseProps => { 1217 const QuickQuote = baseProps => {
1218 const props = QuickQuoteEvent(baseProps); 1218 const props = QuickQuoteEvent(baseProps);
1219 - console.log("🚀 ~ QuickQuote:", props,baseProps)  
1220 const [treeClassName, setTreeClassName] = useState(""); 1219 const [treeClassName, setTreeClassName] = useState("");
1221 1220
1222 // 监听页面滚动事件 1221 // 监听页面滚动事件
@@ -3372,7 +3371,6 @@ const GetBestAlgorithm = props => { @@ -3372,7 +3371,6 @@ const GetBestAlgorithm = props => {
3372 const slaveRowData = slaveData.filter(item => item.sTreeNodeName === selectedNode.showName)[boxModelKey] || {}; 3371 const slaveRowData = slaveData.filter(item => item.sTreeNodeName === selectedNode.showName)[boxModelKey] || {};
3373 if (!slaveRowData) return null; 3372 if (!slaveRowData) return null;
3374 const { sColumnNameConfigExclusion } = slaveRowData; 3373 const { sColumnNameConfigExclusion } = slaveRowData;
3375 - console.log("🚀 ~ slaveRowData:", slaveRowData);  
3376 const calcMethodData = commonUtils.convertStrToObj(sColumnNameConfigExclusion, []); 3374 const calcMethodData = commonUtils.convertStrToObj(sColumnNameConfigExclusion, []);
3377 let { 3375 let {
3378 dSBLB = 0, // 上边留白 3376 dSBLB = 0, // 上边留白
@@ -3710,7 +3708,6 @@ const GetBestAlgorithm = props => { @@ -3710,7 +3708,6 @@ const GetBestAlgorithm = props => {
3710 ); 3708 );
3711 // 计算左偏移 3709 // 计算左偏移
3712 const calculateLeftPosition = (col, reference, isVertical, leftPosition, dYBJJ, dSLengthOffset) => { 3710 const calculateLeftPosition = (col, reference, isVertical, leftPosition, dYBJJ, dSLengthOffset) => {
3713 - console.log(isVertical, reference, "reference");  
3714 if (isVertical) { 3711 if (isVertical) {
3715 if (reference) { 3712 if (reference) {
3716 return col === 0 ? leftPosition : leftPosition + dYBJJ * col; 3713 return col === 0 ? leftPosition : leftPosition + dYBJJ * col;