fix: 거주지/장애인 상세 목록 반영

main
minuk926 3 years ago
parent 03d807f1e1
commit a505af781f

@ -41,18 +41,18 @@ const ModalJudgeDetail = ({ totJudgeUserData, judgeData, simsaUser }) => {
{/* <StyledTableCell align="center" style={{ minWidth: 80 }} hidden> */}
{/* 민원코드 */}
{/* </StyledTableCell> */}
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 100 }}>
접수번호
</StyledTableCell>
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 200 }}>
차량번호
</StyledTableCell>
{simsaUser.map((u) => (
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 80 }}>
{u.NAME}
</StyledTableCell>
))}
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 80 }}>
결과
</StyledTableCell>
</TableRow>
@ -61,12 +61,12 @@ const ModalJudgeDetail = ({ totJudgeUserData, judgeData, simsaUser }) => {
{/* 심사 통계 */}
{totJudgeUserData.map((totData, idx) => (
<StyledTableRow hover key={idx}>
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 100 }}>
{totLabel[idx]}
</StyledTableCell>
<StyledTableCell align="center" style={{ width: 180 }} />
<StyledTableCell align="center" style={{ width: 200 }} />
{totData.map((data) => (
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 80 }}>
{data}
</StyledTableCell>
))}
@ -82,22 +82,22 @@ const ModalJudgeDetail = ({ totJudgeUserData, judgeData, simsaUser }) => {
{judgeData.map((row) => (
<StyledTableRow hover key={row.msSeq}>
{/* <StyledTableCell>{row.msMaincode}</StyledTableCell> */}
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 100 }}>
{row.msSeq}
</StyledTableCell>
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 200 }}>
{row.msCarnum}
</StyledTableCell>
{/* 심사위원별 심사결과 */}
{row.simsa.map((r) => (
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 80 }}>
{r.msuResult}
</StyledTableCell>
))}
{/* 최종심사결과 */}
<StyledTableCell align="center" style={{ width: 180 }}>
<StyledTableCell align="center" style={{ width: 80 }}>
{row.simsa[0].msResult}
</StyledTableCell>
</StyledTableRow>

Loading…
Cancel
Save