master
alireza khaji 3 years ago
commit d6c3c29232
  1. 3
      src/App.css
  2. 2
      src/views/AR/index.scss
  3. 1
      src/views/Auth/Profile/Input/index.js
  4. 4
      src/views/Auth/Profile/Upload/index.js
  5. 4
      src/views/Auth/Profile/index.js
  6. 8
      src/views/Home/HomeStatic/Simple/index.js
  7. 2
      src/views/Support/index.js

@ -7,6 +7,9 @@
height: 100vh; height: 100vh;
max-width: 100vw !important; max-width: 100vw !important;
} }
.MuiFormLabel-asterisk {
color: red !important;
}
@font-face { @font-face {
font-family: numeralMedium; font-family: numeralMedium;
src: url(assets/IRANSans/Farsi_numerals/IRANSans\(FaNum\)_Medium.ttf); src: url(assets/IRANSans/Farsi_numerals/IRANSans\(FaNum\)_Medium.ttf);

@ -32,7 +32,7 @@
img { img {
border-radius: 0.5rem; border-radius: 0.5rem;
max-height: 210px; max-height: 210px;
width: fit-content; width: auto;
margin: 0 auto; margin: 0 auto;
} }
text-decoration: none !important; text-decoration: none !important;

@ -30,6 +30,7 @@ export default function FormPropsTextFields(props) {
variant={variant || "outlined"} variant={variant || "outlined"}
onChange={(e) => parent.onChange(e.target.name, e.target.value)} onChange={(e) => parent.onChange(e.target.name, e.target.value)}
defaultValue={defaultValue[props.name] || ""} defaultValue={defaultValue[props.name] || ""}
required={props.required}
inputProps={{ maxLength }} inputProps={{ maxLength }}
onInput={ onInput={
onInput onInput

@ -8,7 +8,7 @@ export default function Upload(props) {
{window.innerWidth < 1000 ? ( {window.innerWidth < 1000 ? (
<div className="mobile-auth-profile__upload d-flex justify-content-center align-items-center mb-3"> <div className="mobile-auth-profile__upload d-flex justify-content-center align-items-center mb-3">
<> <>
{parent.state.file === null ? ( {isNaN(+parent.state.file) ? (
<AddAPhotoIcon <AddAPhotoIcon
style={{ width: 40, height: 40, color: "white" }} style={{ width: 40, height: 40, color: "white" }}
/> />
@ -19,7 +19,7 @@ export default function Upload(props) {
? URL.createObjectURL(parent.state.file) ? URL.createObjectURL(parent.state.file)
: window.baseURL + "file/" + parent.state.file : window.baseURL + "file/" + parent.state.file
} }
alt={"کاربر"} alt={""}
/> />
)} )}
<input <input

@ -409,7 +409,7 @@ class Profile extends Component {
حساب کاربری حساب کاربری
</h1> </h1>
<p style={{ fontSize: fontSize.mobile.p }}> <p style={{ fontSize: fontSize.mobile.p }}>
لطفا مشحصات خود را به صورت کامل وارد نمایید لطفا مشخصات خود را به صورت کامل وارد نمایید
</p> </p>
</div> </div>
<Upload name="file" parent={this} /> <Upload name="file" parent={this} />
@ -421,6 +421,7 @@ class Profile extends Component {
parent={this} parent={this}
defaultValue={profile} defaultValue={profile}
onInput={onInput.persianOnly} onInput={onInput.persianOnly}
required
/> />
<Input <Input
name="lastName" name="lastName"
@ -428,6 +429,7 @@ class Profile extends Component {
parent={this} parent={this}
defaultValue={profile} defaultValue={profile}
onInput={onInput.persianOnly} onInput={onInput.persianOnly}
required
/> />
<Input <Input
name="username" name="username"

@ -37,7 +37,13 @@ export default function Simple(props) {
style={parentStyle} style={parentStyle}
> >
<div style={childStyle} className="d-flex"> <div style={childStyle} className="d-flex">
<h1 style={{ fontSize: fontSize.h1 }}>{data.title}</h1> <h1 style={{ fontSize: fontSize.h1 }}>
{data.title}
{data.subTitle ? (
<p style={{ fontSize: 12, paddingTop: 5 }}>{data.subTitle}</p>
) : null}
</h1>
</div> </div>
</Link> </Link>
); );

@ -104,7 +104,7 @@ class Support extends Component {
<Select <Select
name="unit" name="unit"
options={ options={
status && this.props.myProductList.length status && this.props.myProductList?.length
? ["واحد مورد نظر", "واحد فروش", "واحد محتوایی", "واحد فنی"] ? ["واحد مورد نظر", "واحد فروش", "واحد محتوایی", "واحد فنی"]
: ["واحد مورد نظر", "واحد فروش", "واحد فنی"] : ["واحد مورد نظر", "واحد فروش", "واحد فنی"]
} }

Loading…
Cancel
Save