시뮬레이션 수정
This commit is contained in:
parent
16870adc30
commit
2205809d0b
@ -264,7 +264,6 @@ 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)
|
||||||
@ -337,7 +336,6 @@ 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>
|
||||||
@ -355,7 +353,6 @@ export default function Simulator() {
|
|||||||
{/* 매수 */}
|
{/* 매수 */}
|
||||||
<td>{convertNumberToPriceDecimal(moduleInfo.amount)}</td>
|
<td>{convertNumberToPriceDecimal(moduleInfo.amount)}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</>
|
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
) : (
|
) : (
|
||||||
@ -388,7 +385,6 @@ 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">
|
||||||
@ -397,7 +393,6 @@ export default function Simulator() {
|
|||||||
{/* 대 */}
|
{/* 대 */}
|
||||||
<td>{convertNumberToPriceDecimal(pcsInfo.amount)}</td>
|
<td>{convertNumberToPriceDecimal(pcsInfo.amount)}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</>
|
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user