Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 5772 | Rev 5795 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5772 Rev 5774
Línea 17... Línea 17...
17
    routeHeaderUpload,
17
    routeHeaderUpload,
18
    companyId,
18
    companyId,
19
    cover
19
    cover
20
  } = urlVars
20
  } = urlVars
Línea 21... Línea -...
21
 
-
 
22
  const [coverPath, setCoverPath] = useState('');
-
 
23
 
21
 
24
  const getData = async (url) => {
22
  const getData = async (url) => {
25
    try {
23
    try {
Línea 26... Línea 24...
26
      const { data } = await axios.get(url)
24
      const { data } = await axios.get(url)
Línea 48... Línea 46...
48
              <h1>Perfil</h1>
46
              <h1>Perfil</h1>
49
            </div>
47
            </div>
50
          </div>
48
          </div>
51
        </div>
49
        </div>
52
      </section>
50
      </section>
-
 
51
      <div className="row">
-
 
52
        <div className="col-12">
-
 
53
          <section className="cover-sec">
-
 
54
            <img
-
 
55
              id="user-cover-img"
-
 
56
              src={
-
 
57
                cover
-
 
58
                  ? `/storage/type/company-cover/code/${companyId}/filename/${cover}`
-
 
59
                  : ''
-
 
60
              }
-
 
61
              alt=""
-
 
62
            />
-
 
63
            <div className="add-pic-box change-cover-image">
-
 
64
              <div className="container">
-
 
65
                <div className="row no-gutters">
-
 
66
                  <div className="col-lg-12 col-sm-12">
-
 
67
                    <a href="#" className="btn-cover-open">
-
 
68
                      <i className="fa fa-camera"></i>
-
 
69
                    </a>
-
 
70
                  </div>
-
 
71
                </div>
-
 
72
              </div>
-
 
73
            </div>
-
 
74
          </section>
-
 
75
        </div>
-
 
76
      </div>
53
    </>
77
    </>
54
  )
78
  )
55
}
79
}
Línea 56... Línea 80...
56
 
80
 
57
export default ProfileView
81
export default ProfileView