견적 특이사항?
This commit is contained in:
parent
33230e7908
commit
152fb5097b
@ -42,7 +42,8 @@ export default function Estimate({}) {
|
|||||||
|
|
||||||
const [selection, setSelection] = useState(new Set())
|
const [selection, setSelection] = useState(new Set())
|
||||||
//견적특이사항 접고 펼치기
|
//견적특이사항 접고 펼치기
|
||||||
const [hidden, setHidden] = useState(false)
|
// const [hidden, setHidden] = useState(false)
|
||||||
|
const [hidden, setHidden] = useState(true)
|
||||||
|
|
||||||
//아이템 자동완성 리스트
|
//아이템 자동완성 리스트
|
||||||
const [displayItemList, setDisplayItemList] = useState([])
|
const [displayItemList, setDisplayItemList] = useState([])
|
||||||
@ -1243,10 +1244,10 @@ export default function Estimate({}) {
|
|||||||
<div className="table-box-title-wrap">
|
<div className="table-box-title-wrap">
|
||||||
<div className="title-wrap">
|
<div className="title-wrap">
|
||||||
<h3 className="product">{getMessage('estimate.detail.header.specialEstimate')}</h3>
|
<h3 className="product">{getMessage('estimate.detail.header.specialEstimate')}</h3>
|
||||||
</div>
|
<div className="estimate-check-btn">
|
||||||
<div className="left-unit-box">
|
<button className={`estimate-arr-btn down mr5 ${hidden ? '' : 'on'}`} onClick={() => setHidden(false)}></button>
|
||||||
<button className={`estimate-arr-btn down mr5 ${hidden ? '' : 'on'}`} onClick={() => setHidden(false)}></button>
|
<button className={`estimate-arr-btn up ${hidden ? 'on' : ''}`} onClick={() => setHidden(true)}></button>
|
||||||
<button className={`estimate-arr-btn up ${hidden ? 'on' : ''}`} onClick={() => setHidden(true)}></button>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* 견적 특이사항 코드영역시작 */}
|
{/* 견적 특이사항 코드영역시작 */}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user