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:
18
src/views/user/mypagebacheca/mypagebacheca.scss
Executable file
18
src/views/user/mypagebacheca/mypagebacheca.scss
Executable file
@@ -0,0 +1,18 @@
|
||||
.profile {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
max-width: 450px;
|
||||
}
|
||||
|
||||
.myrow{
|
||||
display: flex;
|
||||
@media (max-width: 600px) {
|
||||
flex-flow: column;
|
||||
}
|
||||
}
|
||||
|
||||
.qualifica{
|
||||
border: solid 2px #4198ef;
|
||||
border-radius: 1rem;
|
||||
padding: 5px;
|
||||
}
|
||||
27
src/views/user/mypagebacheca/mypagebacheca.ts
Executable file
27
src/views/user/mypagebacheca/mypagebacheca.ts
Executable file
@@ -0,0 +1,27 @@
|
||||
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useI18n } from '@/boot/i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'mypagebacheca',
|
||||
components: { CMyCardPopup },
|
||||
props: {},
|
||||
setup() {
|
||||
const userStore = useUserStore()
|
||||
const $route = useRoute()
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
|
||||
const idBacheca = computed(() => $route.params.idBacheca ? $route.params.idBacheca.toString() : 0)
|
||||
|
||||
return {
|
||||
t,
|
||||
idBacheca,
|
||||
toolsext,
|
||||
}
|
||||
}
|
||||
})
|
||||
24
src/views/user/mypagebacheca/mypagebacheca.vue
Executable file
24
src/views/user/mypagebacheca/mypagebacheca.vue
Executable file
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<CMyPage title="Pagina:"
|
||||
imgbackground="images/calendario_eventi.jpg"
|
||||
sizes="max-height: 120px" styleadd="bottom: -20px !important;">
|
||||
|
||||
<CMyCardPopup
|
||||
:table="toolsext.TABMYBACHECAS"
|
||||
:idRec="idBacheca">
|
||||
|
||||
</CMyCardPopup>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
</CMyPage>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./mypagebacheca.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './mypagebacheca.scss';
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user