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