La foto non si carica bene sul server.
L'immagine della Bacheca metterla in fondo. Creare un'area LAVORO ed un'area BACHECA. Poter contattare la persona dalla pagina che si apre. Riscritto visualizzazione della Card Competenza
This commit is contained in:
56
src/views/user/mywork/mywork.vue
Executable file
56
src/views/user/mywork/mywork.vue
Executable file
@@ -0,0 +1,56 @@
|
||||
<template>
|
||||
|
||||
<CMyPage
|
||||
:title='myskill.username' imgbackground="images/calendario_eventi.jpg"
|
||||
sizes="max-height: 120px" styleadd="bottom: -20px !important;">
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<div v-if="!!myskill.note" v-html="myskill.note"></div>
|
||||
|
||||
<div v-for="(photo, index) in myskill.photos" :key="index">
|
||||
<div v-if="!!photo.imagefile" class="text-center">
|
||||
|
||||
<q-img :src="'upload/profile/'+myskill.username+'/myskills/'+photo.imagefile" class="img"></q-img>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row justify-evenly">
|
||||
<CSkill
|
||||
:table="table"
|
||||
:filtercustom="filtroutente"
|
||||
:visuinpage="true"
|
||||
>
|
||||
|
||||
</CSkill>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="row justify-evenly q-mt-md">
|
||||
<q-btn
|
||||
type="a" rounded size="md"
|
||||
color="white" text-color="blue" :icon="`img:`+userStore.getImgByUsername(myskill.username)"
|
||||
:to="'/my/'+myskill.username"
|
||||
:label="myskill.username"
|
||||
>
|
||||
</q-btn>
|
||||
|
||||
</div>
|
||||
-->
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
</CMyPage>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./mywork.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './mywork.scss';
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user