dar component ezafe address gozine entekhab address baraye karbar gozashtam | 50

temp
mahdi 2 years ago
parent b0429e9e78
commit 7cc6f3240f
  1. 107
      src/views/Address/index.js

@ -356,8 +356,9 @@ export const Address = ({
<span className="font-bold">برای خودم</span> <span className="font-bold">برای خودم</span>
</div> </div>
{activeCheckbox && <p>mahdi</p>} {
activeCheckbox === true ? (
<>
<Header <Header
title="اطلاعات هویتی" title="اطلاعات هویتی"
text="( لطفا نام و نام خانوادگی خود را به طور کامل وارد نمایید )" text="( لطفا نام و نام خانوادگی خود را به طور کامل وارد نمایید )"
@ -403,6 +404,104 @@ export const Address = ({
/> />
</div> </div>
<Header
title="شماره تماس"
text="( شماره موبایل و شماره تلفن ثابت خود را
به همراه پیش شماره وارد کنید )"
/>
<div className="flex flex-col lg:flex-row items-center lg:gap-5 w-full">
<Input
width={isMobile ? "100%" : "50%"}
label={"شماره موبایل"}
regex={(val) => onInput.phonenumber(val)}
name="cellphone"
value={
profilePage
? profileFields.cellphone || user.cellphone
: addressFields?.cellphone
}
onChange={(name, value) =>
profilePage
? setProfileFields({ ...profileFields, cellphone: value })
: onChange(name, value)
}
align="text-right"
direction="ltr"
maxLength={11}
/>
<Input
width={isMobile ? "100%" : "50%"}
label={"شماره تلفن"}
regex={(val) => onInput.numberOnly(val)}
name="phone"
value={
profilePage
? profileFields.phone || user.phone
: addressFields?.phone
}
onChange={(name, value) =>
profilePage
? setProfileFields({ ...profileFields, phone: value })
: onChange(name, value)
}
align="text-right"
direction="ltr"
maxLength={11}
/>
</div>
</>
) : (
<p>mahdi mahdi mahdi</p>
)
// <p>mahdi</p> : <p>mahdiiii</p>
}
{/* <Header
title="اطلاعات هویتی"
text="( لطفا نام و نام خانوادگی خود را به طور کامل وارد نمایید )"
/> */}
{/* <div className="flex flex-col lg:flex-row items-center lg:gap-5 w-full">
<Input
width={isMobile ? "100%" : "50%"}
label={"نام"}
regex={(val) => val}
name="firstName"
onChange={(name, value) =>
profilePage
? setProfileFields({ ...profileFields, firstName: value })
: onChange(name, value)
}
value={
profilePage
? profileFields.firstName || user.firstName
: addressFields?.firstName
}
align="text-right"
direction="rtl"
/>
<Input
width={isMobile ? "100%" : "50%"}
label={"نام خانوادگی"}
regex={(val) => val}
name="lastName"
onChange={(name, value) =>
profilePage
? setProfileFields({ ...profileFields, lastName: value })
: onChange(name, value)
}
value={
profilePage
? profileFields.lastName || user.lastName
: addressFields?.lastName
}
align="text-right"
direction="rtl"
/>
</div> */}
{profilePage && ( {profilePage && (
<Input <Input
width={isMobile ? "100%" : "50%"} width={isMobile ? "100%" : "50%"}
@ -425,7 +524,7 @@ export const Address = ({
</> </>
)} )}
<Header {/* <Header
title="شماره تماس" title="شماره تماس"
text="( شماره موبایل و شماره تلفن ثابت خود را text="( شماره موبایل و شماره تلفن ثابت خود را
به همراه پیش شماره وارد کنید )" به همراه پیش شماره وارد کنید )"
@ -470,7 +569,7 @@ export const Address = ({
direction="ltr" direction="ltr"
maxLength={11} maxLength={11}
/> />
</div> </div> */}
{!isMobile && ( {!isMobile && (
<> <>

Loading…
Cancel
Save