Ver Fonte

수정사항 1차

home há 5 meses atrás
pai
commit
74400972ac

BIN
public/image/project/양산어곡동물류센터.png


+ 12 - 1
src/data/project.ts

@@ -145,7 +145,18 @@ const projectList: MajorProject[] = [
       "이 사업은 부산 암남 물류센터 신축사업으로, 대지면적 19,840㎡, 지상 8층 규모로 조성될 예정입니다. 저온 창고는 1층부터 4층까지, 상온 창고는 5층부터 8\n" +
       "\n" +
       "연면적: 약 85,797㎡ (약 26,000평) \n" +
-      "지상8층\n",
+      "지상8층",
+  },
+  {
+    title: "양산어곡동 물류센터",
+    client: "주식호사 대성신사건업",
+    contractAmount: "₩5,595,200,000",
+    period: "2022.08 - 2024.09",
+    description: "",
+    imageUrl: `${PROJECT_IMAGE_PREFIX}/양산어곡동물류센터.png`,
+    detailDescription: "양산 어곡동 물류센터는 총 7개층(상온 4개층, 저온 3개층)으로 구성된 물류센터입니다. 이 물류센터의 가장 큰 장점은 전층 접안 가능한 설계로, 다양한 물류 작업에 최적화된 공간을 제공합니다.\n" +
+      "특히 저온 창고는 챔버형 구조로 설계되어 있어, 방화구획이 나뉘어져 있으며, 층 내에서 분할 사용도 용이해 더욱 유연한 운영이 가능합니다.\n" +
+      "규모: 지하 1층 ~ 지상 8층, 연면적 약 121,628㎡ (약 3만 7,000평)\n",
   },
 ];
 

+ 4 - 4
src/pages/score/Sheet.tsx

@@ -90,7 +90,7 @@ const columnWidths: Record<string, string> = {
   발주처: "w-[15%]",
   공사명: "w-[35%]",
   계약금액: "w-[15%]",
-  계약일: "w-[11%]",
+  // 계약일: "w-[11%]",
   착공일: "w-[11%]",
   준공일: "w-[13%]",
 };
@@ -152,7 +152,7 @@ const Sheet: React.FC = () => {
                   <col className={columnWidths["발주처"]} />
                   <col className={columnWidths["공사명"]} />
                   <col className={columnWidths["계약금액"]} />
-                  <col className={columnWidths["계약일"]} />
+                  {/*<col className={columnWidths["계약일"]} />*/}
                   <col className={columnWidths["착공일"]} />
                   <col className={columnWidths["준공일"]} />
                 </colgroup>
@@ -161,7 +161,7 @@ const Sheet: React.FC = () => {
                   <th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">발주처</th>
                   <th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">공사명</th>
                   <th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">계약금액</th>
-                  <th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">계약일</th>
+                  {/*<th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">계약일</th>*/}
                   <th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">착공일</th>
                   <th className="border-b border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">준공일</th>
                 </tr>
@@ -177,7 +177,7 @@ const Sheet: React.FC = () => {
                           ? new Intl.NumberFormat("ko-KR").format(row["계약금액"])
                           : row["계약금액"]}
                       </td>
-                      <td className="border-b border-r border-gray-200 px-2 py-2 w-[11%] text-center text-gray-600">{row["계약일"]}</td>
+                      {/*<td className="border-b border-r border-gray-200 px-2 py-2 w-[11%] text-center text-gray-600">{row["계약일"]}</td>*/}
                       <td className="border-b border-r border-gray-200 px-2 py-2 w-[11%] text-center text-gray-600">{row["착공일"]}</td>
                       <td className="border-b border-gray-200 px-2 py-2 w-[13%] text-center text-gray-600">{row["준공일"]}</td>
                     </tr>