diff --git a/src/Components/Detail/CompanyDetail/Basic/index.tsx b/src/Components/Detail/CompanyDetail/Basic/index.tsx index 507b786..eade977 100644 --- a/src/Components/Detail/CompanyDetail/Basic/index.tsx +++ b/src/Components/Detail/CompanyDetail/Basic/index.tsx @@ -100,64 +100,33 @@ export function CompanyDetailBasic({ <_.Stack> - <_.TitleBox>본사주소 + <_.TitleBox>주소 <_.ContentBox width={90}> {`(${companyDetailInfo?.main_zip_code}) ${companyDetailInfo?.main_address} ${companyDetailInfo?.main_address_detail}`} <_.Stack> - <_.TitleBox>지점주소 - <_.ContentBox width={90}> - {companyDetailInfo?.sub_address - ? `(${companyDetailInfo?.sub_zip_code}) ${companyDetailInfo?.sub_address} ${companyDetailInfo?.sub_address_detail}` - : '-'} - - - <_.Stack> - <_.TitleBox>담당자1 + <_.TitleBox>담당자 <_.ContentBox width={15}> {companyDetailInfo?.manager_name} - <_.TitleBox>전화번호1 + <_.TitleBox>전화번호 <_.ContentBox width={15}> {companyDetailInfo?.manager_phone_no.replace( /(\d{3})(\d{4})(\d{4})/, '$1-$2-$3' )} - <_.TitleBox>담당자2 - <_.ContentBox width={15}> - {companyDetailInfo?.sub_manager_name || '-'} - - <_.TitleBox>전화번호2 - <_.ContentBox width={15}> - {companyDetailInfo?.sub_manager_phone_no - ? companyDetailInfo?.sub_manager_phone_no.replace( - /(\d{3})(\d{4})(\d{4})/, - '$1-$2-$3' - ) - : '-'} - - - <_.Stack> <_.TitleBox>이메일 <_.ContentBox width={40}> {companyDetailInfo?.email} - <_.TitleBox>팩스번호 - <_.ContentBox width={40}> - {companyDetailInfo?.fax || '-'} - <_.Stack> - <_.TitleBox>앱/웹 서비스명 - <_.ContentBox width={60}> + <_.TitleBox>대표 서비스명 + <_.ContentBox width={90}> {companyDetailInfo?.service_name} - <_.TitleBox>사업분야 - <_.ContentBox width={20}> - {companyDetailInfo?.business_area} - <_.Stack> <_.TitleBox height={250}>회사소개 diff --git a/src/Components/Detail/CompanyDetail/Edit/index.tsx b/src/Components/Detail/CompanyDetail/Edit/index.tsx index 68d8417..081c30c 100644 --- a/src/Components/Detail/CompanyDetail/Edit/index.tsx +++ b/src/Components/Detail/CompanyDetail/Edit/index.tsx @@ -270,8 +270,8 @@ export function CompanyDetailEdit({ <_.Stack> - <_.TitleBox>본사주소 - <_.ContentBox width={25}> + <_.TitleBox>주소 + <_.ContentBox width={90}> <_.CustomInput placeholder="본사주소" width={100} @@ -281,66 +281,9 @@ export function CompanyDetailEdit({ onChange={companyDetailEditInfohandler} /> - <_.TitleBox>본사 상세주소 - <_.ContentBox width={25}> - <_.CustomInput - placeholder="본사 상세주소" - width={100} - type="text" - value={main_address_detail} - name="main_address_detail" - onChange={companyDetailEditInfohandler} - /> - - <_.TitleBox>본사 우편번호 - <_.ContentBox width={20}> - <_.CustomInput - placeholder="본사 우편번호" - width={100} - type="number" - value={main_zip_code} - name="main_zip_code" - onChange={companyDetailEditInfohandler} - /> - <_.Stack> - <_.TitleBox>지점주소 - <_.ContentBox width={25}> - <_.CustomInput - placeholder="지점주소" - width={100} - type="text" - value={sub_address ? sub_address : ''} - name="sub_address" - onChange={companyDetailEditInfohandler} - /> - - <_.TitleBox>지점 상세주소 - <_.ContentBox width={25}> - <_.CustomInput - placeholder="지점 상세주소" - width={100} - type="text" - value={sub_address_detail ? sub_address_detail : ''} - name="sub_address_detail" - onChange={companyDetailEditInfohandler} - /> - - <_.TitleBox>지점 우편번호 - <_.ContentBox width={20}> - <_.CustomInput - placeholder="지점 우편번호" - width={100} - type="number" - value={sub_zip_code ? sub_zip_code : ''} - name="sub_zip_code" - onChange={companyDetailEditInfohandler} - /> - - - <_.Stack> - <_.TitleBox>담당자1 + <_.TitleBox>담당자 <_.ContentBox width={15}> <_.CustomInput placeholder="담당자1" @@ -351,7 +294,7 @@ export function CompanyDetailEdit({ onChange={companyDetailEditInfohandler} /> - <_.TitleBox>전화번호1 + <_.TitleBox>전화번호 <_.ContentBox width={15}> <_.CustomInput placeholder="전화번호1" @@ -363,31 +306,6 @@ export function CompanyDetailEdit({ onChange={companyDetailEditInfohandler} /> - <_.TitleBox>담당자2 - <_.ContentBox width={15}> - <_.CustomInput - placeholder="담당자2" - width={100} - type="text" - value={sub_manager_name ? sub_manager_name : ''} - name="sub_manager_name" - onChange={companyDetailEditInfohandler} - /> - - <_.TitleBox>전화번호2 - <_.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} - /> - - - <_.Stack> <_.TitleBox>이메일 <_.ContentBox width={40}> <_.CustomInput @@ -399,26 +317,10 @@ export function CompanyDetailEdit({ onChange={companyDetailEditInfohandler} /> - <_.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); - } - }} - /> - <_.Stack> - <_.TitleBox>앱/웹 서비스명 - <_.ContentBox width={60}> + <_.TitleBox>대표 서비스명 + <_.ContentBox width={90}> <_.CustomInput width={100} type="text" @@ -427,15 +329,6 @@ export function CompanyDetailEdit({ onChange={companyDetailEditInfohandler} /> - <_.TitleBox>사업분야 - <_.ContentBox width={20}> - <_.CustomInput - width={100} - type="text" - value={companyDetailInfo?.business_area} - disabled={true} - /> - <_.Stack> <_.TitleBox height={250}>