물건현황 react-select 용 퍼블 scss 머지

This commit is contained in:
basssy 2024-10-18 08:51:23 +09:00
parent cdf6a43cac
commit be866218fa
5 changed files with 2764 additions and 2073 deletions

View File

@ -536,8 +536,11 @@ export default function StuffDetail() {
</th>
<td>
<div className="flx-box">
<div style={{ width: '567px', marginRight: '5px' }}>
<div className="select-wrap mr5" style={{ width: '567px' }}>
<Select
className="react-select-custom"
classNamePrefix="custom"
placeholder="Select"
options={saleStoreList}
onChange={onSelectionChange}
getOptionLabel={(x) => x.saleStoreName}
@ -562,8 +565,11 @@ export default function StuffDetail() {
</th>
<td>
<div className="flx-box">
<div style={{ width: '567px', marginRight: '5px' }}>
<div className="select-wrap mr5" style={{ width: '567px' }}>
<Select
className="react-select-custom"
classNamePrefix="custom"
placeholder="Select"
ref={ref}
options={otherSaleStoreList}
onChange={onSelectionChange2}

View File

@ -257,18 +257,23 @@ export default function StuffSearchCondition() {
</td>
<th>{getMessage('stuff.search.schSelSaleStoreId')}</th>
<td>
{schSelSaleStoreList?.length > 0 && (
<Select
ref={ref}
options={schSelSaleStoreList}
onChange={onSelectionChange}
getOptionLabel={(x) => x.saleStoreName}
getOptionValue={(x) => x.saleStoreId}
defaultValue={stuffSearch?.selObject?.value ? stuffSearch?.selObject : null}
isDisabled={sessionState?.storeLvl === '1' ? false : true}
isClearable={true}
/>
)}
<div className="select-wrap">
{schSelSaleStoreList?.length > 0 && (
<Select
className="react-select-custom"
classNamePrefix="custom"
placeholder="Select"
ref={ref}
options={schSelSaleStoreList}
onChange={onSelectionChange}
getOptionLabel={(x) => x.saleStoreName}
getOptionValue={(x) => x.saleStoreId}
defaultValue={stuffSearch?.selObject?.value ? stuffSearch?.selObject : null}
isDisabled={sessionState?.storeLvl === '1' ? false : true}
isClearable={true}
/>
)}
</div>
</td>
</tr>
<tr>

View File

@ -339,13 +339,15 @@ export default function PlanRequestPop(props) {
</td>
<th>{getMessage('stuff.planReqPopup.search.planStatName')}</th>
<td>
<div className="">
<div className="select-wrap">
<Select
className="react-select-custom"
classNamePrefix="custom"
ref={ref}
options={tempList}
onChange={onSelectionChange}
isSearchable={false}
placeholder="선택하세요."
placeholder="Select"
isClearable={true}
/>
</div>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff