발전 시뮬레이션 경사/방위각 수정
This commit is contained in:
parent
6bd3e782e6
commit
8f7a847504
@ -227,7 +227,7 @@ export default function Simulator() {
|
|||||||
{/* 연간예측발전량 */}
|
{/* 연간예측발전량 */}
|
||||||
<div className="estimate-box">
|
<div className="estimate-box">
|
||||||
<div className="estimate-tit">{getMessage('simulator.title.sub4')}</div>
|
<div className="estimate-tit">{getMessage('simulator.title.sub4')}</div>
|
||||||
<div className="estimate-name">{chartData[chartData.length - 1]}</div>
|
<div className="estimate-name">{convertNumberToPriceDecimal(chartData[chartData.length - 1])}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="estimate-list-wrap">
|
<div className="estimate-list-wrap">
|
||||||
@ -343,15 +343,15 @@ export default function Simulator() {
|
|||||||
{/* 지붕면 */}
|
{/* 지붕면 */}
|
||||||
<td>{moduleInfo.roofSurface}</td>
|
<td>{moduleInfo.roofSurface}</td>
|
||||||
{/* 경사각 */}
|
{/* 경사각 */}
|
||||||
<td>{convertNumberToPriceDecimal(moduleInfo.slope)}寸</td>
|
<td>{convertNumberToPriceDecimal(moduleInfo.slopeAngle)}寸</td>
|
||||||
{/* 방위각(도) */}
|
{/* 방위각(도) */}
|
||||||
<td>{convertNumberToPriceDecimal(moduleInfo.angle)}</td>
|
<td>{convertNumberToPriceDecimal(moduleInfo.azimuth)}</td>
|
||||||
{/* 태양전지모듈 */}
|
{/* 태양전지모듈 */}
|
||||||
<td>
|
<td>
|
||||||
<div className="overflow-lab">{moduleInfo.itemNo}</div>
|
<div className="overflow-lab">{moduleInfo.itemNo}</div>
|
||||||
</td>
|
</td>
|
||||||
{/* 매수 */}
|
{/* 매수 */}
|
||||||
<td>{moduleInfo.amount}</td>
|
<td>{convertNumberToPriceDecimal(moduleInfo.amount)}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
@ -393,7 +393,7 @@ export default function Simulator() {
|
|||||||
<div className="overflow-lab">{pcsInfo.itemNo}</div>
|
<div className="overflow-lab">{pcsInfo.itemNo}</div>
|
||||||
</td>
|
</td>
|
||||||
{/* 대 */}
|
{/* 대 */}
|
||||||
<td>{pcsInfo.amount}</td>
|
<td>{convertNumberToPriceDecimal(pcsInfo.amount)}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user