Compare commits

..

No commits in common. "ab78399e42abd09fac9f7e3d0f3cdf763e6b6f8e" and "c5d830f6c01ffe7ac35addf7f7c8fe8cb40c24fb" have entirely different histories.

View File

@ -264,6 +264,7 @@ export default function Simulator() {
style={{ width: '30%' }} style={{ width: '30%' }}
className="select-light" className="select-light"
value={pwrGnrSimType} value={pwrGnrSimType}
defaultValue={`D`}
onChange={(e) => { onChange={(e) => {
handleChartChangeData(e.target.value) handleChartChangeData(e.target.value)
setPwrGnrSimType(e.target.value) setPwrGnrSimType(e.target.value)
@ -336,6 +337,7 @@ export default function Simulator() {
{moduleInfoList.length > 0 ? ( {moduleInfoList.length > 0 ? (
moduleInfoList.map((moduleInfo) => { moduleInfoList.map((moduleInfo) => {
return ( return (
<>
<tr key={moduleInfo.itemId}> <tr key={moduleInfo.itemId}>
{/* 지붕면 */} {/* 지붕면 */}
<td>{moduleInfo.roofSurface}</td> <td>{moduleInfo.roofSurface}</td>
@ -353,6 +355,7 @@ export default function Simulator() {
{/* 매수 */} {/* 매수 */}
<td>{convertNumberToPriceDecimal(moduleInfo.amount)}</td> <td>{convertNumberToPriceDecimal(moduleInfo.amount)}</td>
</tr> </tr>
</>
) )
}) })
) : ( ) : (
@ -385,6 +388,7 @@ export default function Simulator() {
{pcsInfoList.length > 0 ? ( {pcsInfoList.length > 0 ? (
pcsInfoList.map((pcsInfo) => { pcsInfoList.map((pcsInfo) => {
return ( return (
<>
<tr key={pcsInfo.itemId}> <tr key={pcsInfo.itemId}>
{/* 파워컨디셔너 */} {/* 파워컨디셔너 */}
<td className="al-l"> <td className="al-l">
@ -393,6 +397,7 @@ export default function Simulator() {
{/* 대 */} {/* 대 */}
<td>{convertNumberToPriceDecimal(pcsInfo.amount)}</td> <td>{convertNumberToPriceDecimal(pcsInfo.amount)}</td>
</tr> </tr>
</>
) )
}) })
) : ( ) : (