2021-09-19 20:07:28 +02:00
|
|
|
import { defineComponent, onMounted, ref } from 'vue'
|
|
|
|
|
|
|
|
|
|
import { CMyPage } from '@/components/CMyPage'
|
|
|
|
|
import { CGridTableRec } from '@/components/CGridTableRec'
|
2022-01-04 01:09:08 +01:00
|
|
|
import { tools } from '@store/Modules/tools'
|
|
|
|
|
import { static_data } from '@/db/static_data'
|
2021-09-19 20:07:28 +02:00
|
|
|
|
|
|
|
|
import { fieldsTable } from '@src/store/Modules/fieldsTable'
|
|
|
|
|
import { shared_consts } from '@/common/shared_vuejs'
|
|
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'UsersList',
|
|
|
|
|
components: { CGridTableRec, CMyPage },
|
|
|
|
|
setup() {
|
|
|
|
|
|
|
|
|
|
const arrfilterand: any = ref([])
|
|
|
|
|
|
|
|
|
|
function mounted() {
|
2022-03-02 20:18:49 +01:00
|
|
|
if (tools.appid() === tools.IDAPP_RISO) {
|
2021-09-19 20:07:28 +02:00
|
|
|
arrfilterand.value = [
|
|
|
|
|
{
|
|
|
|
|
label: 'Attivi',
|
|
|
|
|
value: shared_consts.FILTER_ATTIVI
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Nascosti',
|
|
|
|
|
value: shared_consts.FILTER_NASCOSTI
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Non hanno l\'Invitante',
|
|
|
|
|
value: shared_consts.FILTER_USER_NO_INVITANTE
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'No Telegram ID',
|
|
|
|
|
value: shared_consts.FILTER_USER_NO_TELEGRAM_ID
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Verifica Telegram interrotta',
|
|
|
|
|
value: shared_consts.FILTER_USER_CODICE_AUTH_TELEGRAM
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Email non Verificata',
|
|
|
|
|
value: shared_consts.FILTER_USER_NO_EMAIL_VERIFICATA
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Telegram BOT Rimosso',
|
|
|
|
|
value: shared_consts.FILTER_USER_TELEGRAM_BLOCKED
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-11 00:25:35 +01:00
|
|
|
} else if (tools.appid() === tools.IDAPP_FREEPLANET) {
|
|
|
|
|
arrfilterand.value = [
|
|
|
|
|
{
|
|
|
|
|
label: 'Attivi',
|
|
|
|
|
value: shared_consts.FILTER_ATTIVI
|
|
|
|
|
},
|
|
|
|
|
]
|
2021-09-19 20:07:28 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function db_fieldsTable() {
|
|
|
|
|
return fieldsTable
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(mounted)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
arrfilterand,
|
2022-02-19 22:02:54 +01:00
|
|
|
fieldsTable,
|
2021-09-19 20:07:28 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|