Quando si inserisce un evento, su giunge alla fine, si salva, NON SI MEMORIZZANO foto, data e orario!
This commit is contained in:
@@ -58,7 +58,7 @@ export default defineComponent({
|
||||
const idnotif = computed(() => $route.query.idnotif ? $route.query.idnotif.toString() : '')
|
||||
const isDebugOn = computed(() => tools.isDebugOn())
|
||||
|
||||
|
||||
const $router = useRouter()
|
||||
const filtroutente = ref(<any[]>[])
|
||||
const showPic = ref(false)
|
||||
const caricato = ref(false)
|
||||
@@ -170,6 +170,10 @@ export default defineComponent({
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
function gotoPage(link: string) {
|
||||
$router.push(link)
|
||||
}
|
||||
|
||||
return {
|
||||
username,
|
||||
profile,
|
||||
@@ -205,6 +209,7 @@ export default defineComponent({
|
||||
handshake_inCommon,
|
||||
globalStore,
|
||||
getLinkWebSite,
|
||||
gotoPage,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -201,6 +201,24 @@
|
||||
<div class="col-12 text-h7 text-blue text-shadow-2">
|
||||
{{ userStore.userprofile.username }}
|
||||
</div>
|
||||
<q-btn rounded icon="fas fa-ellipsis-h">
|
||||
<q-menu>
|
||||
<q-list style="min-width: 150px">
|
||||
<q-item
|
||||
clickable
|
||||
v-close-popup
|
||||
@click="gotoPage('/editprofile')"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<q-icon color="primary" name="fas fa-pencil-alt" />
|
||||
</q-item-section>
|
||||
<q-item-section>{{
|
||||
$t('shared.edit_profile')
|
||||
}}</q-item-section>
|
||||
</q-item>
|
||||
</q-list>
|
||||
</q-menu>
|
||||
</q-btn>
|
||||
|
||||
<div class="col-12 text-h7">
|
||||
<span
|
||||
@@ -284,7 +302,10 @@
|
||||
>
|
||||
</q-btn>
|
||||
</div>
|
||||
<div v-if="userStore.userprofile.username !== myusername()" class="row justify-center">
|
||||
<div
|
||||
v-if="userStore.userprofile.username !== myusername()"
|
||||
class="row justify-center"
|
||||
>
|
||||
<q-chip
|
||||
v-if="
|
||||
userStore.IsHandShakeByMe(userStore.userprofile) &&
|
||||
@@ -502,7 +523,10 @@
|
||||
"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<q-icon color="negative" name="fas fa-handshake-slash" />
|
||||
<q-icon
|
||||
color="negative"
|
||||
name="fas fa-handshake-slash"
|
||||
/>
|
||||
</q-item-section>
|
||||
<q-item-section>{{
|
||||
$t('handshake.remove_from_myhandshake')
|
||||
@@ -616,12 +640,7 @@
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="
|
||||
userStore.userprofile &&
|
||||
userStore.userprofile._id
|
||||
"
|
||||
>
|
||||
<div v-if="userStore.userprofile && userStore.userprofile._id">
|
||||
<CTitleBanner
|
||||
class=""
|
||||
:title="$t('dashboard.info')"
|
||||
@@ -639,7 +658,11 @@
|
||||
v-if="!!userStore.userprofile.profile.resid_province"
|
||||
v-bind="$attrs"
|
||||
:copy="false"
|
||||
:value="globalStore.getProvinceByProv(userStore.userprofile.profile.resid_province)"
|
||||
:value="
|
||||
globalStore.getProvinceByProv(
|
||||
userStore.userprofile.profile.resid_province
|
||||
)
|
||||
"
|
||||
label="Provincia"
|
||||
/>
|
||||
<CDateTime
|
||||
@@ -658,11 +681,11 @@
|
||||
:copy="false"
|
||||
label="Sito Web"
|
||||
>
|
||||
<span
|
||||
v-html="
|
||||
tools.getlinkhref(getLinkWebSite(), getLinkWebSite())
|
||||
"
|
||||
/>
|
||||
<span
|
||||
v-html="
|
||||
tools.getlinkhref(getLinkWebSite(), getLinkWebSite())
|
||||
"
|
||||
/>
|
||||
</CLabel>
|
||||
|
||||
<CLabel
|
||||
|
||||
Reference in New Issue
Block a user