견적서 테이블 select 추가

This commit is contained in:
김창수 2025-04-03 14:50:38 +09:00
parent aa7c753248
commit 996e429b22
5 changed files with 30 additions and 11 deletions

View File

@ -158,10 +158,10 @@ export default function CanvasPage() {
{/* <DrawingFlow/> */}
{/* 지붕모듈선택 */}
<RoofModuleOption/>
{/* <RoofModuleOption/> */}
{/* 육지붕모듈 선택 */}
<HexagonalRoofOption/>
{/* <HexagonalRoofOption/> */}
{/* 회로 및 가대설정 */}
{/* <CircuitStandSetting/> */}

View File

@ -51,7 +51,7 @@ export default function NewProductPage(){
{/* <DesignRequestPop/> */}
{/* 로딩바 */}
<LoadingSpinner/>
{/* <LoadingSpinner/> */}
</div>
)
}

View File

@ -95,16 +95,25 @@ export default function CanvasEstimate() {
</td>
</tr>
<tr>
{/* 2025-04-03 */}
<th>注文分類  <span className="important">*</span></th>
<td colSpan={3}>
<div className="radio-wrap">
<div className="d-check-radio light mr10">
<input type="radio" name="radio01" id="ra01" />
<label htmlFor="ra01">住宅PKG</label>
<div className="form-flex-wrap">
<div className="radio-wrap">
<div className="d-check-radio light mr10">
<input type="radio" name="radio01" id="ra01" />
<label htmlFor="ra01">住宅PKG</label>
</div>
<div className="d-check-radio light">
<input type="radio" name="radio01" id="ra02" />
<label htmlFor="ra02">積上げ( YJOD )</label>
</div>
</div>
<div className="d-check-radio light">
<input type="radio" name="radio01" id="ra02" />
<label htmlFor="ra02">積上げ( YJOD )</label>
<div className="form-flex-select ml10">
<label htmlFor="">住宅PKG</label>
<div className="form-select">
<ReactSelect/>
</div>
</div>
</div>
</td>

View File

@ -68,7 +68,7 @@ const CustomOption = (props) => {
isClearable={true}
menuPlacement={'auto'}
components={{Option: CustomOption}}
isDisabled={true}
/>
)
}

View File

@ -47,6 +47,16 @@ table{
}
.form-flex-wrap{
@include flexbox;
.form-flex-select{
@include flexbox;
label{
flex: none;
margin-right: 5px;
}
.form-select{
min-width: 300px;
}
}
}
.date-picker-wrap{
width: 100%;