- asggiunto bottone "installa app" sulla email di conferma registrazione e anche la Guida "/guida".

- migliorato InvitaAmico
This commit is contained in:
Surya Paolo
2025-11-19 11:39:36 +01:00
parent 05a3617103
commit 57436f088b
25 changed files with 270 additions and 113 deletions

View File

@@ -0,0 +1 @@
export { default as gestoreordini } from './installaApp.vue'

View File

@@ -0,0 +1,41 @@
$heightBtn: 100%;
.card .product-image {
height: 300px;
}
.mycol{
color:gray;
}
.q-item__label--caption{
color: blue;
}
.ordstat{
text-align: center;
border: 1px solid #8778cb;
border-radius: 10px;
padding: 5px;
}
.confermato {
font-weight: bold;
color: green;
}
.note {
font-style: italic;
color:blue;
}
.totali {
font-weight: bold;
color: blue;
font-size: 1rem;
}
.totaliacq {
font-weight: bold;
color: red;
font-size: 1rem;
}

View File

@@ -0,0 +1,39 @@
import { defineComponent, onMounted, ref, watch } from 'vue'
import { tools } from '@tools'
import { useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
import { shared_consts } from '@src/common/shared_vuejs'
import { CTitleBanner } from '@src/components/CTitleBanner'
import { CCheckAppRunning } from '@src/components/CCheckAppRunning'
export default defineComponent({
name: 'installaApp',
components: { CTitleBanner, CCheckAppRunning },
props: {},
setup() {
const $router = useRouter()
const $q = useQuasar()
const { t } = useI18n()
async function mounted() {
}
onMounted(mounted)
return {
costanti,
tools,
toolsext,
shared_consts,
t,
}
}
})

View File

@@ -0,0 +1,13 @@
<template>
<q-page>
<CTitleBanner title="Installa App"></CTitleBanner>
<CCheckAppRunning :isPageApp="true" />
</q-page>
</template>
<script lang="ts" src="./installaApp.ts">
</script>
<style lang="scss" scoped>
@import "./installaApp.scss";
</style>