fixes
This commit is contained in:
@ -113,7 +113,7 @@ export const PartnerBid = () => {
|
||||
</div>
|
||||
<div className='partnerBid__suitable__persons'>
|
||||
{mokPersons.map((person, index) => {
|
||||
return <div key={index} className='partnerBid__suitable__person'>
|
||||
return <Link to='/candidate/110' key={index} className='partnerBid__suitable__person'>
|
||||
<img src={person.img} alt='avatar' />
|
||||
<p>{person.name}</p>
|
||||
<Link className='partnerBid__suitable__person__more' to={person.link}>
|
||||
@ -122,7 +122,7 @@ export const PartnerBid = () => {
|
||||
<div className='partnerBid__suitable__person__info'>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
})
|
||||
}
|
||||
</div>
|
||||
|
@ -343,6 +343,10 @@
|
||||
background: #FFFFFF;
|
||||
border-radius: 12px;
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 88px;
|
||||
height: 88px;
|
||||
|
@ -42,9 +42,9 @@ export const PartnerEmployees = () => {
|
||||
<div className="info_summary">
|
||||
<img src={imgInfo} alt="img" />
|
||||
<p>Данные и резюме</p>
|
||||
<div className="arrow">
|
||||
<Link to='/candidate/26' className="arrow">
|
||||
<img src={rightArrow} alt="arrow" />
|
||||
</div>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
<div className="partnerEmployees__item__info__project">
|
||||
|
@ -50,11 +50,23 @@
|
||||
}
|
||||
|
||||
&__info {
|
||||
position: relative;
|
||||
display: flex;
|
||||
padding: 15px 50px 14px 16px;
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
background: #52B709;
|
||||
border-radius: 12px;
|
||||
height: 4px;
|
||||
width: 51%;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
&__qualification {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -15,6 +15,7 @@ import summaryIcon from "../../images/summaryIcon.png"
|
||||
import timerIcon from "../../images/timerIcon.png"
|
||||
import paymentIcon from "../../images/paymentIcon.png"
|
||||
import settingIcon from "../../images/settingIcon.png"
|
||||
import avatarMok from "../PartnerTreaties/Images/avatarMok.png"
|
||||
|
||||
import rightArrow from "../../images/arrowRight.png"
|
||||
|
||||
@ -105,7 +106,7 @@ export const Profile = () => {
|
||||
</h2>
|
||||
<div className='summary__info'>
|
||||
<div className='summary__person'>
|
||||
<img src={profileInfo.photo ? urlForLocal(profileInfo.photo) : ''} className='summary__avatar' alt='avatar'/>
|
||||
<img src={profileInfo.photo ? urlForLocal(profileInfo.photo) : avatarMok} className='summary__avatar' alt='avatar'/>
|
||||
<p className='summary__name'>
|
||||
{user === 'developer' ?
|
||||
<span>{profileInfo.fio}, {profileInfo.specification} разработчик</span>
|
||||
|
@ -4,16 +4,17 @@ import {ProfileHeader} from "../../components/ProfileHeader/ProfileHeader";
|
||||
import {getProfileInfo} from "../../redux/outstaffingSlice";
|
||||
import {ProfileBreadcrumbs} from "../../components/ProfileBreadcrumbs/ProfileBreadcrumbs"
|
||||
import {Footer} from '../../components/Footer/Footer'
|
||||
import {transformHtml, urlForLocal} from "../../helper";
|
||||
import { urlForLocal} from "../../helper";
|
||||
|
||||
import arrow from "../../images/right-arrow.png";
|
||||
import rightArrow from "../../images/arrowRight.png"
|
||||
import gitImgItem from "../../images/gitItemImg.png"
|
||||
|
||||
import './summary.scss'
|
||||
import {apiRequest} from "../../api/request";
|
||||
import {Navigate} from "react-router-dom";
|
||||
|
||||
import './summary.scss'
|
||||
|
||||
export const Summary = () => {
|
||||
if(localStorage.getItem('role_status') === '18') {
|
||||
return <Navigate to="/profile" replace/>
|
||||
|
@ -79,9 +79,9 @@
|
||||
background: white;
|
||||
border-radius: 12px 12px 5px 5px;
|
||||
position: relative;
|
||||
height: 70px;
|
||||
height: 73px;
|
||||
display: flex;
|
||||
top: -10px;
|
||||
top: -13px;
|
||||
align-items: center;
|
||||
|
||||
p {
|
||||
|
Reference in New Issue
Block a user