Browse Source

laanc step1 buffer 기능 수정 및 마우스 커서 포인터 수정

pull/2/head
sanguu516(박상현) 11 months ago
parent
commit
68783a6764
  1. 2
      src/containers/laanc/LaancPlanContainer.js
  2. 12
      src/views/laanc/FlightArea.js
  3. 3
      src/views/laanc/LaancStep1.js
  4. 1
      src/views/laanc/LaancStep2.js

2
src/containers/laanc/LaancPlanContainer.js

@ -85,7 +85,7 @@ export default function LaancPlanContainer({
areaList: [ areaList: [
{ {
...prevState.areaList[0], ...prevState.areaList[0],
bufferZone: 100,
coordList: value coordList: value
} }
] ]

12
src/views/laanc/FlightArea.js

@ -471,13 +471,13 @@ export default function FlightArea({
name: 'latlon', name: 'latlon',
value: coordValue value: coordValue
}); });
//스텝1에 반경도 글씨가 바뀌어야 함...!!
handleChange({
type: 'area',
name: 'bufferZone',
value: String(areas.bufferZone)
});
} }
//스텝1에 반경도 글씨가 바뀌어야 함...!!
// handleChange({
// type: 'area',
// name: 'bufferZone',
// value: String(areas.bufferZone)
// });
} }
}; };

3
src/views/laanc/LaancStep1.js

@ -187,6 +187,7 @@ export default function LaancStep1({
onMouseLeave={() => setPopoverCommercial(false)} onMouseLeave={() => setPopoverCommercial(false)}
size={16} size={16}
className='pal-popover-icon' className='pal-popover-icon'
style={{ cursor: 'pointer' }}
/> />
<UncontrolledPopover <UncontrolledPopover
isOpen={popoverCommercial} isOpen={popoverCommercial}
@ -234,6 +235,7 @@ export default function LaancStep1({
onMouseLeave={() => setPopoverSchFltStDt(false)} onMouseLeave={() => setPopoverSchFltStDt(false)}
size={16} size={16}
className='pal-popover-icon' className='pal-popover-icon'
style={{ cursor: 'pointer' }}
/> />
<UncontrolledPopover <UncontrolledPopover
isOpen={popoverSchFltStDt} isOpen={popoverSchFltStDt}
@ -284,6 +286,7 @@ export default function LaancStep1({
onMouseLeave={() => setPopoverSchFltEndDt(false)} onMouseLeave={() => setPopoverSchFltEndDt(false)}
size={16} size={16}
className='pal-popover-icon' className='pal-popover-icon'
style={{ cursor: 'pointer' }}
/> />
<UncontrolledPopover <UncontrolledPopover
isOpen={popoverSchFltEndDt} isOpen={popoverSchFltEndDt}

1
src/views/laanc/LaancStep2.js

@ -81,7 +81,6 @@ export default function LaancStep2({
}) })
); );
}, []); }, []);
console.log('>>', termsList);
useEffect(() => { useEffect(() => {
if (!laancApply?.valid) setLancIsCheck(true); if (!laancApply?.valid) setLancIsCheck(true);
else if (laancApply?.valid) setLancIsCheck(false); else if (laancApply?.valid) setLancIsCheck(false);

Loading…
Cancel
Save