tramite il BOT, viene memorizzato l'username telegram e si usa quello come username per la APP, e l'ID telegram viene passato direttamente, senza chiedere la verifica. - ospitalità (inizio).
31 lines
570 B
Vue
Executable File
31 lines
570 B
Vue
Executable File
<template>
|
|
<CMyPage title="Ospitalità"
|
|
imgbackground="images/calendario_eventi.jpg"
|
|
sizes="max-height: 120px" styleadd="bottom: -20px !important;">
|
|
|
|
<div v-if="!tools.isLogged()">
|
|
<CCheckIfIsLogged></CCheckIfIsLogged>
|
|
</div>
|
|
|
|
<CMyCardPopup
|
|
v-if="!!idHosp"
|
|
:table="toolsext.TABMYHOSPS"
|
|
:nopopup="true"
|
|
:idRec="idHosp">
|
|
|
|
</CMyCardPopup>
|
|
|
|
<br>
|
|
<br>
|
|
|
|
</CMyPage>
|
|
</template>
|
|
|
|
<script lang="ts" src="./mypagehosp.ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './mypagehosp.scss';
|
|
</style>
|
|
|