diff --git a/src/app/management/newproduct/page.jsx b/src/app/management/newproduct/page.jsx
index 755bf75..463bbb3 100644
--- a/src/app/management/newproduct/page.jsx
+++ b/src/app/management/newproduct/page.jsx
@@ -47,7 +47,7 @@ export default function NewProductPage(){
{/* */}
{/* 설계의뢰 불러오기 팝업 */}
- {/* */}
+
)
}
\ No newline at end of file
diff --git a/src/components/sub/management/newproduct/DesignRequestPop.jsx b/src/components/sub/management/newproduct/DesignRequestPop.jsx
index ae9da56..66d9965 100644
--- a/src/components/sub/management/newproduct/DesignRequestPop.jsx
+++ b/src/components/sub/management/newproduct/DesignRequestPop.jsx
@@ -1,6 +1,50 @@
+'use client'
+
import SingleDatePicker from "@/components/common/datepicker/SingleDatePicker";
+import Pagination from "@/components/common/grid/Pagination";
+import QGrid from "@/components/common/grid/QGrid";
+import { useState } from "react";
+
+const HeaderRadioButton = () => {
+ return(
+
diff --git a/src/components/sub/management/newproduct/FindAddressPop.jsx b/src/components/sub/management/newproduct/FindAddressPop.jsx
index cc73f11..9d0e551 100644
--- a/src/components/sub/management/newproduct/FindAddressPop.jsx
+++ b/src/components/sub/management/newproduct/FindAddressPop.jsx
@@ -1,5 +1,39 @@
+'use client'
+import QGrid from "@/components/common/grid/QGrid";
+import { useState } from "react";
+
+const HeaderRadioButton = () => {
+ return(
+
+
+
+
+ )
+}
+const CellRadioButton = () => {
+ return(
+
+
+
+
+ )
+}
export default function FindAddressPop(){
+ const [gridProps, setGridProps] = useState({
+ gridData: [
+ { city: "Address1を表示", district: "Address2を表示", municipal: "Address3を表示" },
+ { city: "Address1を表示", district: "Address2を表示", municipal: "Address3を表示" },
+ { city: "Address1を表示", district: "Address2を表示", municipal: "Address3を表示" },
+ ],
+ gridColumns:[
+ { field: "radio", width: 45, cellRenderer: CellRadioButton, headerComponent: HeaderRadioButton, cellStyle: { display: 'flex', alignItems: 'center', justifyContent: 'center' }},
+ { headerName: "都道府県", field: "city", flex: 1 },
+ { headerName: "市区町村", field: "district", flex: 1 },
+ { headerName: "市区町村以下", field: "municipal", flex: 1 },
+ ],
+ isPageable: true,
+ })
return(
@@ -16,7 +50,9 @@ export default function FindAddressPop(){
diff --git a/src/styles/_contents.scss b/src/styles/_contents.scss
index f221f7f..37233d1 100644
--- a/src/styles/_contents.scss
+++ b/src/styles/_contents.scss
@@ -627,9 +627,9 @@
justify-content: flex-end;
margin-top: 20px;
}
- .pagination-wrap{
- margin-top: 24px;
- }
+}
+.pagination-wrap{
+ margin-top: 24px;
}
.infomation-wrap{
diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss
index cc1c6ef..287bcb9 100644
--- a/src/styles/_modal.scss
+++ b/src/styles/_modal.scss
@@ -26,8 +26,6 @@ $alert-color: #101010;
.modal-pop-wrap{
position: fixed;
- top: 200px;
- right: 100px;
width: 100%;
height: -webkit-fit-content;
height: -moz-fit-content;