From 31598e3fbd0252f48e4d6d32bbe5fae3902371bd Mon Sep 17 00:00:00 2001 From: Surya Paolo Date: Sun, 1 Oct 2023 01:24:55 +0200 Subject: [PATCH] =?UTF-8?q?-=20Migliorata=20la=20Notifica=20degli=20Eventi?= =?UTF-8?q?=20su=20Telegram=20-=20Gli=20annunci=20(beni/servizi/ospitalit?= =?UTF-8?q?=C3=A0)=20ora=20possono=20essere=20visti=20anche=20tramite=20un?= =?UTF-8?q?=20link,=20anche=20per=20chi=20non=20=C3=A8=20dentro=20alla=20A?= =?UTF-8?q?pp.=20-=20Aggiunto=20bottone=20"Aggiorna"=20per=20aggiornare=20?= =?UTF-8?q?il=20Saldo=20attuale.=20-=20I=20"Conti=20Collettivi"=20ora=20ve?= =?UTF-8?q?ngono=20chiamati=20Gruppi=20(o=20Conto=20di=20Gruppo).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 +- src/common/shared_vuejs.ts | 7 + .../CCheckIfIsLogged/CCheckIfIsLogged.ts | 1 + .../CCheckIfIsLogged/CCheckIfIsLogged.vue | 82 +--- src/components/CFinder/CFinder.ts | 10 +- src/components/CFinder/CFinder.vue | 2 +- src/components/CGridTableRec/CGridTableRec.ts | 45 ++- .../CGridTableRec/CGridTableRec.vue | 99 ++--- .../CGridTableUser/CGridTableUser.ts | 2 +- src/components/CInfoAccount/CInfoAccount.vue | 1 + .../CMyCardService/CMyCardService.ts | 9 +- .../CMyCardService/CMyCardService.vue | 9 +- src/components/CMyCircuit/CMyCircuit.vue | 13 +- src/components/CMyCircuits/CMyCircuits.ts | 6 +- src/components/CMyElem/CMyElem.ts | 2 + src/components/CMyElem/CMyElem.vue | 4 + src/components/CMyRecCard/CMyRecCard.vue | 4 +- src/components/CSaldo/CSaldo.ts | 7 +- src/components/CSignIn/CSignIn.ts | 4 +- src/components/CSkill/CSkill.vue | 5 +- .../CUserInfoAccount/CUserInfoAccount.vue | 1 + .../CVisuVideoPromoAndPDF.scss | 6 + .../CVisuVideoPromoAndPDF.ts | 38 ++ .../CVisuVideoPromoAndPDF.vue | 61 +++ src/components/CVisuVideoPromoAndPDF/index.ts | 1 + src/model/GlobalStore.ts | 2 + src/model/UserStore.ts | 1 + src/statics/lang/it.js | 38 +- src/store/CircuitStore.ts | 33 +- src/store/Modules/fieldsTable.ts | 4 +- src/store/Modules/tools.ts | 3 +- src/store/NotifStore.ts | 3 +- src/store/UserStore.ts | 43 ++- src/views/admin/dbop/dbop.vue | 8 + src/views/user/mycircuit/mycircuit.ts | 361 ++++++++++-------- src/views/user/mycircuit/mycircuit.vue | 308 ++++++++------- src/views/user/myfriends/myfriends.vue | 9 +- src/views/user/mygroup/mygroup.ts | 2 +- src/views/user/mygroup/mygroup.vue | 8 +- .../user/mypagebacheca/mypagebacheca.vue | 9 +- src/views/user/mypagegood/mypagegood.vue | 8 +- src/views/user/mypagehosp/mypagehosp.vue | 8 +- src/views/user/myservice/myservice.vue | 28 +- 43 files changed, 784 insertions(+), 515 deletions(-) create mode 100755 src/components/CVisuVideoPromoAndPDF/CVisuVideoPromoAndPDF.scss create mode 100755 src/components/CVisuVideoPromoAndPDF/CVisuVideoPromoAndPDF.ts create mode 100755 src/components/CVisuVideoPromoAndPDF/CVisuVideoPromoAndPDF.vue create mode 100755 src/components/CVisuVideoPromoAndPDF/index.ts diff --git a/package.json b/package.json index 92425c45..e760c1ab 100755 --- a/package.json +++ b/package.json @@ -123,14 +123,14 @@ "crypto": false }, "browserslist": [ - "last 80 Chrome versions", + "last 100 Chrome versions", "last 40 Firefox versions", "last 20 Edge versions", "last 55 Safari versions", "last 90 Android versions", "last 250 ChromeAndroid versions", "last 60 FirefoxAndroid versions", - "last 30 iOS versions", + "last 35 iOS versions", "last 10 Opera versions", "> 0.03%", "not dead" diff --git a/src/common/shared_vuejs.ts b/src/common/shared_vuejs.ts index e296e0ae..12773a20 100755 --- a/src/common/shared_vuejs.ts +++ b/src/common/shared_vuejs.ts @@ -15,6 +15,7 @@ export const shared_consts = { color: 'green', }, }, + LIMIT_NOTIF_FOR_USER: 200, ELEMTYPE: { TITLE: 5, @@ -57,6 +58,7 @@ export const shared_consts = { BTN_LOGIN: 260, FOOTER: 270, PROFILETUTORIAL: 280, + VISUVIDEOPROMOANDPDF: 290 }, QUERYTYPE_MYGROUP: 1, @@ -1464,6 +1466,10 @@ export const shared_consts = { value: 270, label: 'Footer', }, + { + value: 280, + label: 'Visu Promo and PDF', + }, { value: 40, label: 'Separatore', @@ -1766,6 +1772,7 @@ export const shared_consts = { lasttimeonline: 1, comune: 1, mycities: 1, + lang: 1, 'profile.img': 1, 'profile.mygroups': 1, 'profile.mycircuits': 1, diff --git a/src/components/CCheckIfIsLogged/CCheckIfIsLogged.ts b/src/components/CCheckIfIsLogged/CCheckIfIsLogged.ts index b5380619..7a40fea0 100755 --- a/src/components/CCheckIfIsLogged/CCheckIfIsLogged.ts +++ b/src/components/CCheckIfIsLogged/CCheckIfIsLogged.ts @@ -33,6 +33,7 @@ export default defineComponent({ costanti, static_data, site, + t, } } }) diff --git a/src/components/CCheckIfIsLogged/CCheckIfIsLogged.vue b/src/components/CCheckIfIsLogged/CCheckIfIsLogged.vue index 2ef8cc81..b37cb58b 100755 --- a/src/components/CCheckIfIsLogged/CCheckIfIsLogged.vue +++ b/src/components/CCheckIfIsLogged/CCheckIfIsLogged.vue @@ -1,56 +1,7 @@