Iscrizione Conacreis e Arcadei

This commit is contained in:
paoloar77
2022-10-29 12:37:30 +02:00
parent 2399124a33
commit 392c8bb6af
20 changed files with 668 additions and 380 deletions

View File

@@ -282,9 +282,86 @@ export const tools = {
},
{
id: 3,
label: 'In Contanti alla CNM',
label: 'In Contanti',
value: 3,
},
{
id: 4,
label: 'Altro',
value: 4,
},
],
SelectQuotaVersata: [
{
id: 1,
label: '21 €',
value: 21,
},
{
id: 2,
label: '34 €',
value: 34,
},
{
id: 3,
label: '55 €',
value: 55,
},
{
id: 4,
label: '89 €',
value: 114,
},
{
id: 5,
label: '144 €',
value: 144,
},
{
id: 6,
label: '233 €',
value: 233,
},
{
id: 7,
label: '377 €',
value: 377,
},
],
SelectDocType: [
{
id: 0,
label: 'Nessuno',
value: 0,
},
{
id: 1,
label: 'L.R.',
value: 1,
},
{
id: 2,
label: 'C.I.',
value: 2,
},
{
id: 3,
label: 'Passaporto',
value: 3,
},
{
id: 4,
label: 'Patente',
value: 4,
},
{
id: 5,
label: 'Autodichiarazione',
value: 5,
},
],
SelectListNumPeople: [

View File

@@ -1,10 +1,20 @@
import { defineStore } from 'pinia'
import {
ICircuit, IMyCircuit,
IFriends, IMsgGlobParam,
ICircuit,
IMyCircuit,
IFriends,
IMsgGlobParam,
ISigninOptions,
ISignupOptions, IUserFields, IUserNotifType, IUserProfile, IUserState, IAccount, IColGridTable, ISignupIscrizioneConacreisOptions,
ISignupOptions,
IUserFields,
IUserNotifType,
IUserProfile,
IUserState,
IAccount,
IColGridTable,
ISignupIscrizioneConacreisOptions,
ISignupIscrizioneArcadeiOptions,
} from '@src/model'
import { tools } from '@store/Modules/tools'
import translate from '@src/globalroutines/util'