website non si vede

Stato e Contributo non te lo seleziona se clicchi a destra nel toggle
Ordinare per ultimo inserito
Corretto che Aggiungendo un Record, veniva salvato in anticipo
cancellazione Record, Inserimento Record : errori vari
This commit is contained in:
paoloar77
2022-02-17 17:43:27 +01:00
parent dedf35c659
commit 9161909003
29 changed files with 243 additions and 68 deletions

View File

@@ -0,0 +1,5 @@
.mybanner {
font-weight: bold;
font-size: 1.1rem;
text-align: center;
}

View File

@@ -0,0 +1,44 @@
import { useQuasar } from 'quasar'
import {
defineComponent, onBeforeMount, onBeforeUnmount, onMounted, ref, toRefs, watch, inject, computed,
} from 'vue'
import { tools } from '@store/Modules/tools'
import { shared_consts } from '@src/common/shared_vuejs'
import { useI18n } from '@src/boot/i18n'
import { useRouter } from 'vue-router'
import { static_data } from '@/db/static_data'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import MixinUsers from '../../mixins/mixin-users'
export default defineComponent({
name: 'CFirstPageApp',
components: {},
props: {},
setup() {
const $q = useQuasar()
const { t } = useI18n()
const $router = useRouter()
const userStore = useUserStore()
const globalStore = useGlobalStore()
function mounted() {
// mounted
}
onMounted(mounted)
return {
tools,
static_data,
globalStore,
t,
}
},
})

View File

@@ -0,0 +1,22 @@
<template>
<div v-if="tools.isTest()">
<q-banner
rounded
dense
class="bg-primary text-white"
color="primary q-title"
style="text-align: center;">
<template v-slot:avatar>
<q-icon name="fas fa-exclamation-triangle" color="yellow" size="xs" />
</template>
<span class="mybanner">Ambiente di Test</span>
</q-banner>
</div>
</template>
<script lang="ts" src="./CFirstPageApp.ts">
</script>
<style lang="scss" scoped>
@import './CFirstPageApp.scss';
</style>

View File

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