Browse Source

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

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

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

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

Loading…
Cancel
Save