VERSIONE 0.3.3: RISO:

"RISO.APP
alla fine copiare la cartella upload di insiemesipuo.app in riso.app"
Corretto BOT Menu
Altre sistemazioni (idShippings)
This commit is contained in:
paoloar77
2022-03-02 20:18:49 +01:00
parent 1c22d5e8d4
commit aaa67ae0aa
84 changed files with 3267 additions and 106 deletions

View File

@@ -0,0 +1,6 @@
#logoimg {
height: 300px;
width: auto;
@media screen and (max-width: 600px) {
}
}

View File

@@ -1,6 +1,11 @@
<template>
<div v-if="!tools.isLogged()">
<div class="q-pa-md q-gutter-sm">
<div id="logo" class="text-center">
<img id="logoimg" :src="tools.getimglogo()" alt="logo APP">
</div>
<q-banner rounded class="bg-primary text-white">
<div class="text-h6 text-center">
Accedi al menu inserendo le tue credenziali 🔑<br><br>
@@ -8,7 +13,7 @@
👉🏻 Chiedi in chat il link a chi ti ha <strong>invitato</strong>.<br>
</div>
<template v-slot:action>
<q-btn flat color="white" label="Accedi al Login" @click="openrighttoolbar"/>
<q-btn flat color="white" label="Accedi al Login" @click="tools.openrighttoolbar()"/>
</template>
</q-banner>
</div>
@@ -16,7 +21,8 @@
<div
v-if="!tools.isLogged() && static_data.functionality.ENABLE_REGISTRATION && static_data.functionality.SHOW_REG_BUTTON"
style="margin:20px; text-align: center;">
<q-btn rounded size="lg" color="primary" @click="openrighttoolbar">{{ $t('login.enter') }}
<q-btn rounded size="lg" color="primary" @click="tools.openrighttoolbar()">{{ $t('login.enter') }}
</q-btn>
</div>

View File

@@ -1,8 +1,8 @@
const msg_website_enUs = {
ws: {
sitename: 'InsiemeSiPuò',
siteshortname: 'ISP',
botname: 'InsiemeSiPuò BOT',
sitename: 'Riso',
siteshortname: 'RISO',
botname: 'Riso BOT',
},
products: {
quantity: 'Quantità',

View File

@@ -1,8 +1,8 @@
const msg_website_es = {
ws: {
sitename: 'InsiemeSiPuò',
siteshortname: 'ISP',
botname: 'InsiemeSiPuò BOT',
sitename: 'Riso',
siteshortname: 'RISO',
botname: 'Riso BOT',
},
products: {
quantity: 'Quantità',

View File

@@ -1,8 +1,8 @@
const msg_website_fr = {
ws: {
sitename: 'InsiemeSiPuò',
siteshortname: 'ISP',
botname: 'InsiemeSiPuò BOT',
sitename: 'Riso',
siteshortname: 'RISO',
botname: 'Riso BOT',
},
homepage: {
titlecontatti: 'CONTACTS',

View File

@@ -1,7 +1,7 @@
const msg_website_it = {
ws: {
sitename: 'InsiemeSiPuò',
siteshortname: 'ISP',
sitename: 'Riso',
siteshortname: 'RISO',
},
products: {
quantity: 'Quantità',
@@ -128,7 +128,7 @@ const msg_website_it = {
color: 'Colore',
},
msg: {
myAppName: 'InsiemeSiPuò',
myAppName: 'Riso',
myAppDescription: 'Il primo Vero Social Libero, Equo e Solidale, dove Vive Consapevolezza e Aiuto Comunitario. Gratuito',
underconstruction: 'App in costruzione...',
myDescriz: '',

View File

@@ -1,8 +1,8 @@
const msg_website_pt = {
ws: {
sitename: 'InsiemeSiPuò',
siteshortname: 'ISP',
botname: 'InsiemeSiPuò BOT',
sitename: 'Riso',
siteshortname: 'RISO',
botname: 'Riso BOT',
},
pages: {
home: 'Home',

View File

@@ -1,8 +1,8 @@
const msg_website_si = {
ws: {
sitename: 'InsiemeSiPuò',
siteshortname: 'ISP',
botname: 'InsiemeSiPuò BOT',
sitename: 'Riso',
siteshortname: 'RISO',
botname: 'Riso BOT',
},
pages: {
home: 'Domača stran',

View File

@@ -6,6 +6,7 @@ import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
import { CSkill } from '@/components/CSkill'
import { CFinder } from '@/components/CFinder'
import { Footer } from '@/components/Footer'
import { CDashboard } from '@/components/CDashboard'
import { CChartMap } from '@src/components/CChartMap'
import { CUserNonVerif } from '@/components/CUserNonVerif'
@@ -23,7 +24,7 @@ import { colmyBachecas } from '@store/Modules/fieldsTable'
export default defineComponent({
name: 'eventi',
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage },
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, Footer },
setup() {
return {
colmyBachecas,

View File

@@ -20,6 +20,7 @@
</div>
<Footer></Footer>
</q-page>
</template>

View File

@@ -13,6 +13,7 @@ import { CTitlePage } from '@/components/CTitlePage'
import { CMapsEsempio } from '@src/components/CMapsEsempio'
import { CVerifyEmail } from '@src/components/CVerifyEmail'
import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
import { Footer } from '@/components/Footer'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { static_data } from '@/db/static_data'
@@ -21,7 +22,7 @@ import MixinUsers from '@/mixins/mixin-users'
export default defineComponent({
name: 'Goods',
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage },
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, Footer },
setup() {
return {

View File

@@ -18,7 +18,7 @@
</div>
</div>
<Footer></Footer>
</q-page>
</template>

View File

@@ -29,14 +29,9 @@ export default defineComponent({
const { getRefLink } = MixinUsers()
function openrighttoolbar() {
globalStore.rightDrawerOpen = true
}
return {
tools,
static_data,
openrighttoolbar,
getRefLink,
userStore,
}

View File

@@ -13,6 +13,7 @@ import { CUserNonVerif } from '@/components/CUserNonVerif'
import { CMapsEsempio } from '@src/components/CMapsEsempio'
import { CVerifyEmail } from '@src/components/CVerifyEmail'
import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
import { Footer } from '@/components/Footer'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { static_data } from '@/db/static_data'
@@ -22,7 +23,7 @@ import { costanti } from '@costanti'
export default defineComponent({
name: 'Services',
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage },
components: { CSkill, CChartMap, CMapsEsempio, CFinder, CVerifyEmail, CVerifyTelegram, CDashboard, CUserNonVerif, CTitlePage, Footer },
setup() {
return {
tools,

View File

@@ -19,6 +19,7 @@
</div>
<Footer></Footer>
</q-page>
</template>

View File

@@ -16,7 +16,7 @@ export default defineComponent({
const arrfilterand: any = ref([])
function mounted() {
if (tools.appid() === tools.IDAPP_AYNI) {
if (tools.appid() === tools.IDAPP_RISO) {
arrfilterand.value = [
{
label: 'Attivi',
@@ -26,18 +26,6 @@ export default defineComponent({
label: 'Nascosti',
value: shared_consts.FILTER_NASCOSTI
},
{
label: 'Navi Non Presenti!',
value: shared_consts.FILTER_NAVI_NON_PRESENTI
},
{
label: 'Non hanno visto Zoom',
value: shared_consts.FILTER_USER_NO_ZOOM
},
{
label: 'hanno detto di aver visto lo Zoom',
value: shared_consts.FILTER_ASK_ZOOM_VISTO
},
{
label: 'Non hanno l\'Invitante',
value: shared_consts.FILTER_USER_NO_INVITANTE
@@ -54,10 +42,6 @@ export default defineComponent({
label: 'Email non Verificata',
value: shared_consts.FILTER_USER_NO_EMAIL_VERIFICATA
},
{
label: 'Non hanno compilato il sogno',
value: shared_consts.FILTER_USER_NO_DREAM
},
{
label: 'Telegram BOT Rimosso',
value: shared_consts.FILTER_USER_TELEGRAM_BLOCKED

View File

@@ -81,6 +81,7 @@ export const tools = {
IDAPP_SIP: '9',
IDAPP_CNM: '10',
IDAPP_FREEPLANET: '1',
IDAPP_RISO: '13',
TipoMsg: {
SEND_LINK_CHAT_DONATORI: 1,
@@ -3508,9 +3509,9 @@ export const tools = {
return ''
} else {
console.log('keystr', keystr, 'serv', serv)
// console.log('keystr', keystr, 'serv', serv)
const ris = globalStore.getValueSettingsByKey(keystr, serv)
console.log('...ris', ris)
// console.log('...ris', ris)
if (ris === '')
if (def !== undefined)
@@ -5097,7 +5098,7 @@ export const tools = {
idCity: this.getCitySel(),
NumLevel: 0,
adType: tools.getSelectionByTable('adtypes', costanti.AdType.OFFRO),
idShipping: [tools.getSelectionByTable('shippings', [])],
idShipping: tools.getSelectionByTable('shippings', []),
otherfilters: tools.getSelectionByTable('otherfilters', []),
photos: [],
note: '',
@@ -5219,7 +5220,12 @@ export const tools = {
getLinkProfileAportador() {
return '/my/' + tools.getAportadorSolidario()
}
},
openrighttoolbar() {
const globalStore = useGlobalStore()
globalStore.rightDrawerOpen = true
},
// getLocale() {

View File

@@ -10,6 +10,7 @@ import { useI18n } from '@src/boot/i18n'
import { useGlobalStore } from '@store/globalStore'
import { useRoute, useRouter } from 'vue-router'
import { useUserStore } from '@store/UserStore'
import { tools } from '@store/Modules/tools'
export default defineComponent({
@@ -61,14 +62,10 @@ export default defineComponent({
})
}
function openrighttoolbar() {
globalStore.rightDrawerOpen = true
}
load()
return {
openrighttoolbar,
tools,
verificatook,
giaverificato,
myrisultato,

View File

@@ -37,7 +37,7 @@
</transition>
<div class="text-center q-mt-md">
<q-btn rounded size="lg" color="primary" @click="openrighttoolbar">{{ $t('login.enter') }}
<q-btn rounded size="lg" color="primary" @click="tools.openrighttoolbar()">{{ $t('login.enter') }}
</q-btn>
</div>