Browse Source

메인 -> 기체정보에 모델명 나오게 수정

pull/2/head
qkr7828(박재우) 2 years ago
parent
commit
171fcce7e7
  1. 4
      src/components/dashboard/DashboardDronList.js
  2. 1
      src/modules/main/dash/models/mainDashModel.ts

4
src/components/dashboard/DashboardDronList.js

@ -15,7 +15,7 @@ export const DashboardDronList = props => {
<thead> <thead>
<tr> <tr>
<th>제작 번호</th> <th>제작 번호</th>
<th>그룹 </th> <th>모델 </th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -23,7 +23,7 @@ export const DashboardDronList = props => {
return ( return (
<tr key={index}> <tr key={index}>
<td>{item.prdctNum}</td> <td>{item.prdctNum}</td>
<td>{item.createDt}</td> <td>{item.groupNm}</td>
</tr> </tr>
); );
})} })}

1
src/modules/main/dash/models/mainDashModel.ts

@ -26,6 +26,7 @@ export interface DronListData {
arcrftModelNm: string; arcrftModelNm: string;
prdctNum: string; prdctNum: string;
createDt: Date; createDt: Date;
groupNm: string;
} }
export const initMainDash = { export const initMainDash = {

Loading…
Cancel
Save