Commit 1d6da65a267678b31b3b40d6a519d3261b4cf29a

Authored by 陈鑫涛
1 parent ce2b90b7

去除console

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