- asggiunto bottone "installa app" sulla email di conferma registrazione e anche la Guida "/guida".
- migliorato InvitaAmico
This commit is contained in:
1
src/views/admin/installaApp/index.ts
Executable file
1
src/views/admin/installaApp/index.ts
Executable file
@@ -0,0 +1 @@
|
||||
export { default as gestoreordini } from './installaApp.vue'
|
||||
41
src/views/admin/installaApp/installaApp.scss
Executable file
41
src/views/admin/installaApp/installaApp.scss
Executable 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;
|
||||
}
|
||||
39
src/views/admin/installaApp/installaApp.ts
Executable file
39
src/views/admin/installaApp/installaApp.ts
Executable 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,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
13
src/views/admin/installaApp/installaApp.vue
Executable file
13
src/views/admin/installaApp/installaApp.vue
Executable 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>
|
||||
Reference in New Issue
Block a user