Settore se compariva "Tutti", veniva selezionato erroneamente di default -100
Risolto caricamento immagini Cliccando sull'immagine del profilo, nella Card, non si apre il Profilo Aggiunto "Estero" e "On Line" sul campo Comune. Orientamento dell'Immagine. viene storta una volta ridimensionata. Al momento della registrazione, dal BOT, in automatico viene presa l'immagine di Telegram e salvata sul proprio profilo della APP.
This commit is contained in:
59
src/views/user/myservice/myservice.vue
Executable file
59
src/views/user/myservice/myservice.vue
Executable file
@@ -0,0 +1,59 @@
|
||||
<template>
|
||||
<CMyPage
|
||||
:title="username" imgbackground="images/calendario_eventi.jpg"
|
||||
sizes="max-height: 120px" styleadd="bottom: -20px !important;">
|
||||
|
||||
<div v-if="!tools.isLogged()">
|
||||
<CCheckIfIsLogged></CCheckIfIsLogged>
|
||||
</div>
|
||||
|
||||
<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="./myservice.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './myservice.scss';
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user