Skip to content

Commit

Permalink
feat :: 기업 상세 Input 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
은지 committed Nov 6, 2024
1 parent ee76b23 commit 36fcb2b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 149 deletions.
41 changes: 5 additions & 36 deletions src/Components/Detail/CompanyDetail/Basic/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,64 +100,33 @@ export function CompanyDetailBasic({
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>본사주소</_.TitleBox>
<_.TitleBox>주소</_.TitleBox>
<_.ContentBox width={90}>
{`(${companyDetailInfo?.main_zip_code}) ${companyDetailInfo?.main_address} ${companyDetailInfo?.main_address_detail}`}
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>지점주소</_.TitleBox>
<_.ContentBox width={90}>
{companyDetailInfo?.sub_address
? `(${companyDetailInfo?.sub_zip_code}) ${companyDetailInfo?.sub_address} ${companyDetailInfo?.sub_address_detail}`
: '-'}
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>담당자1</_.TitleBox>
<_.TitleBox>담당자</_.TitleBox>
<_.ContentBox width={15}>
{companyDetailInfo?.manager_name}
</_.ContentBox>
<_.TitleBox>전화번호1</_.TitleBox>
<_.TitleBox>전화번호</_.TitleBox>
<_.ContentBox width={15}>
{companyDetailInfo?.manager_phone_no.replace(
/(\d{3})(\d{4})(\d{4})/,
'$1-$2-$3'
)}
</_.ContentBox>
<_.TitleBox>담당자2</_.TitleBox>
<_.ContentBox width={15}>
{companyDetailInfo?.sub_manager_name || '-'}
</_.ContentBox>
<_.TitleBox>전화번호2</_.TitleBox>
<_.ContentBox width={15}>
{companyDetailInfo?.sub_manager_phone_no
? companyDetailInfo?.sub_manager_phone_no.replace(
/(\d{3})(\d{4})(\d{4})/,
'$1-$2-$3'
)
: '-'}
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>이메일</_.TitleBox>
<_.ContentBox width={40}>
{companyDetailInfo?.email}
</_.ContentBox>
<_.TitleBox>팩스번호</_.TitleBox>
<_.ContentBox width={40}>
{companyDetailInfo?.fax || '-'}
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>앱/웹 서비스명</_.TitleBox>
<_.ContentBox width={60}>
<_.TitleBox>대표 서비스명</_.TitleBox>
<_.ContentBox width={90}>
{companyDetailInfo?.service_name}
</_.ContentBox>
<_.TitleBox>사업분야</_.TitleBox>
<_.ContentBox width={20}>
{companyDetailInfo?.business_area}
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox height={250}>회사소개</_.TitleBox>
Expand Down
119 changes: 6 additions & 113 deletions src/Components/Detail/CompanyDetail/Edit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ export function CompanyDetailEdit({
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>본사주소</_.TitleBox>
<_.ContentBox width={25}>
<_.TitleBox>주소</_.TitleBox>
<_.ContentBox width={90}>
<_.CustomInput
placeholder="본사주소"
width={100}
Expand All @@ -281,66 +281,9 @@ export function CompanyDetailEdit({
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>본사 상세주소</_.TitleBox>
<_.ContentBox width={25}>
<_.CustomInput
placeholder="본사 상세주소"
width={100}
type="text"
value={main_address_detail}
name="main_address_detail"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>본사 우편번호</_.TitleBox>
<_.ContentBox width={20}>
<_.CustomInput
placeholder="본사 우편번호"
width={100}
type="number"
value={main_zip_code}
name="main_zip_code"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>지점주소</_.TitleBox>
<_.ContentBox width={25}>
<_.CustomInput
placeholder="지점주소"
width={100}
type="text"
value={sub_address ? sub_address : ''}
name="sub_address"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>지점 상세주소</_.TitleBox>
<_.ContentBox width={25}>
<_.CustomInput
placeholder="지점 상세주소"
width={100}
type="text"
value={sub_address_detail ? sub_address_detail : ''}
name="sub_address_detail"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>지점 우편번호</_.TitleBox>
<_.ContentBox width={20}>
<_.CustomInput
placeholder="지점 우편번호"
width={100}
type="number"
value={sub_zip_code ? sub_zip_code : ''}
name="sub_zip_code"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>담당자1</_.TitleBox>
<_.TitleBox>담당자</_.TitleBox>
<_.ContentBox width={15}>
<_.CustomInput
placeholder="담당자1"
Expand All @@ -351,7 +294,7 @@ export function CompanyDetailEdit({
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>전화번호1</_.TitleBox>
<_.TitleBox>전화번호</_.TitleBox>
<_.ContentBox width={15}>
<_.CustomInput
placeholder="전화번호1"
Expand All @@ -363,31 +306,6 @@ export function CompanyDetailEdit({
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>담당자2</_.TitleBox>
<_.ContentBox width={15}>
<_.CustomInput
placeholder="담당자2"
width={100}
type="text"
value={sub_manager_name ? sub_manager_name : ''}
name="sub_manager_name"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>전화번호2</_.TitleBox>
<_.ContentBox width={15}>
<_.CustomInput
placeholder="전화번호2"
width={100}
type="number"
maxLength={11}
value={sub_manager_phone_no ? sub_manager_phone_no : ''}
name="sub_manager_phone_no"
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>이메일</_.TitleBox>
<_.ContentBox width={40}>
<_.CustomInput
Expand All @@ -399,26 +317,10 @@ export function CompanyDetailEdit({
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>팩스번호</_.TitleBox>
<_.ContentBox width={40}>
<_.CustomInput
placeholder="팩스번호"
width={100}
type="text"
value={fax ? fax : ''}
name="fax"
onChange={(event) => {
const value = event.target.value;
if (/^\d*$/.test(value)) {
companyDetailEditInfohandler(event);
}
}}
/>
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox>앱/웹 서비스명</_.TitleBox>
<_.ContentBox width={60}>
<_.TitleBox>대표 서비스명</_.TitleBox>
<_.ContentBox width={90}>
<_.CustomInput
width={100}
type="text"
Expand All @@ -427,15 +329,6 @@ export function CompanyDetailEdit({
onChange={companyDetailEditInfohandler}
/>
</_.ContentBox>
<_.TitleBox>사업분야</_.TitleBox>
<_.ContentBox width={20}>
<_.CustomInput
width={100}
type="text"
value={companyDetailInfo?.business_area}
disabled={true}
/>
</_.ContentBox>
</_.Stack>
<_.Stack>
<_.TitleBox height={250}>
Expand Down

0 comments on commit 36fcb2b

Please sign in to comment.