Commit 7ed6d11cb101dcbe306cb709fa4b941b4a63a32a
1 parent
83fcc1d4
去除打印数据
Showing
4 changed files
with
0 additions
and
5 deletions
src/components/Common/BoxDesignCompontent/index.js
| ... | ... | @@ -357,7 +357,6 @@ const BoxDesignCompontent = baseProps => { |
| 357 | 357 | setRightBoxList(box.filter(rightBoxFilter)); |
| 358 | 358 | } else if (type === "8" || type === 8) { |
| 359 | 359 | const box = [...boxList]; |
| 360 | - console.log("🚀 ~ updateLists ~ boxList:", boxList); | |
| 361 | 360 | box.forEach(x => { |
| 362 | 361 | x.show = true; |
| 363 | 362 | }); |
| ... | ... | @@ -424,7 +423,6 @@ const BoxDesignCompontent = baseProps => { |
| 424 | 423 | }; |
| 425 | 424 | |
| 426 | 425 | const handleChange = (e, index) => { |
| 427 | - console.log(e.target.value, index, "handleChange"); | |
| 428 | 426 | const updatedBoxList = [...boxList]; |
| 429 | 427 | updatedBoxList[index].value = e.target.value; |
| 430 | 428 | setBoxList(updatedBoxList); | ... | ... |
src/components/Common/BoxDesignCompontent/svg.js
| ... | ... | @@ -471,7 +471,6 @@ const SvgBox = props => { |
| 471 | 471 | } else { |
| 472 | 472 | leftSize = zbtb?.value; |
| 473 | 473 | } |
| 474 | - console.log(viewBoxWidth, viewBoxHeight, "viewBoxHeight"); | |
| 475 | 474 | |
| 476 | 475 | svg.setAttribute("viewBox", `${-(leftSize * scale) || 0} ${-ySvg} ${viewBoxWidth + 2} ${viewBoxHeight + 2}`); |
| 477 | 476 | svg.setAttribute("width", `${viewBoxWidth}px`); | ... | ... |
src/components/Common/CommonComponent/index.js
src/components/QuickQuote/index.jsx