diff --git a/src/app/canvas/page.jsx b/src/app/canvas/page.jsx
index f6d396b..143a162 100644
--- a/src/app/canvas/page.jsx
+++ b/src/app/canvas/page.jsx
@@ -83,13 +83,13 @@ export default function CanvasPage() {
{/* */}
{/* 패널 배치 집계 */}
-
-
-
-
+ {/* */}
+ {/* */}
+ {/* */}
+ {/* */}
{/* 배치면 초기 설정 */}
- {/* */}
+
{/* 캔버스 기본 셋팅 */}
{/* {modalOption.option && } */}
@@ -106,7 +106,7 @@ export default function CanvasPage() {
{/* */}
{/* 지붕형상 설정 */}
- {/* */}
+
{/* 지붕형상 수동 설정 */}
{/* */}
@@ -135,7 +135,7 @@ export default function CanvasPage() {
{/* */}
{/* 배치면 그리기 */}
- {/* */}
+
{/* 면형상 배치 */}
{/* */}
@@ -158,13 +158,13 @@ export default function CanvasPage() {
{/* */}
{/* 지붕모듈선택 */}
- {/* */}
+
{/* 육지붕모듈 선택 */}
{/* */}
{/* 회로 및 가대설정 */}
- {/* */}
+
{/* 모듈 부가기능 */}
diff --git a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx
index de6a485..83a38b7 100644
--- a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx
+++ b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx
@@ -95,7 +95,7 @@ export default function PlacementSettingPop(){
diff --git a/src/components/common/select/Qselect.jsx b/src/components/common/select/Qselect.jsx
index 398ba40..b3b5593 100644
--- a/src/components/common/select/Qselect.jsx
+++ b/src/components/common/select/Qselect.jsx
@@ -1,11 +1,18 @@
'use client'
import { useState } from "react"
-export default function Qselect({title, option}){
+export default function Qselect({title, option, disabled}){
const [selectAct, setSelectAct] = useState(false);
+ const disabledCheck = () => {
+ if(disabled){
+ setSelectAct(false)
+ }else{
+ setSelectAct(!selectAct);
+ }
+ }
return(
- setSelectAct(!selectAct)}>
+
{title}
{option.map((el, idx) => (
diff --git a/src/components/publishpage/PublishPage.jsx b/src/components/publishpage/PublishPage.jsx
index 193d97a..5a81f40 100644
--- a/src/components/publishpage/PublishPage.jsx
+++ b/src/components/publishpage/PublishPage.jsx
@@ -253,6 +253,7 @@ export default function PublishPage() {
(지붕형상 수동 설정, 배치면 그리기, 외벽선 작성, 오브젝트 배치, 동선이동 형 올림 내림, 지붕형상 설정, 지붕모듈 설정, 보조선 작성, 처마∙케라바 변경, 외벽선 편집 및 오프셋, 각 변 속성 변경, 실측치 설정 )
- *패널 배치 집계 수정
+ - *Qselect 컴포넌트 수정 및 배치면 초기설정 selelct disabled 추가
2024-10-28 |
diff --git a/src/styles/_reset.scss b/src/styles/_reset.scss
index ceb5aff..a77b35e 100644
--- a/src/styles/_reset.scss
+++ b/src/styles/_reset.scss
@@ -414,6 +414,15 @@ button{
transform: translateY(-50%) rotate(-180deg);
}
}
+ &.disabled{
+ cursor: default;
+ p{
+ color: #aaa;
+ }
+ &::after{
+ opacity: 0.7;
+ }
+ }
}
.select-light{