Registrazione senza Telegram

This commit is contained in:
Surya Paolo
2022-12-09 01:03:52 +01:00
parent 56411a4539
commit 771271fda2
33 changed files with 130 additions and 51 deletions

View File

@@ -105,6 +105,17 @@ export default defineComponent({
const actual = ''
const tablesel = ref('')
const iconsel = computed(() => {
const myarr: any = tools.getoptionsMainCards(false)
if (myarr) {
const rec = myarr.find((rec: any) => rec.value === tablesel.value)
if (rec) {
return rec.icon
}
}
return ''
})
const myfilter = ref('')
const myfilterand: any = ref([])
let rowsel: any = {}
@@ -337,6 +348,7 @@ export default defineComponent({
gotoPageSel,
createNewRecordDialog,
toHome,
iconsel,
}
}
})