Registrazione senza Telegram
This commit is contained in:
@@ -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,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
/>
|
||||
</q-avatar>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<div class="col-4">
|
||||
<q-select
|
||||
v-model="tablesel"
|
||||
:options="optionsMainCards"
|
||||
@@ -37,6 +37,9 @@
|
||||
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
|
||||
@update:model-value="gotoPageSel"
|
||||
>
|
||||
<template v-slot:prepend>
|
||||
<q-icon :name="iconsel" />
|
||||
</template>
|
||||
<template v-slot:option="scope">
|
||||
<q-item v-bind="scope.itemProps">
|
||||
<q-item-section avatar>
|
||||
@@ -53,13 +56,13 @@
|
||||
</q-select>
|
||||
</div>
|
||||
<q-space />
|
||||
<q-btn
|
||||
<!--<q-btn
|
||||
size="sm"
|
||||
class="col-1 q-mx-xs"
|
||||
icon="fas fa-plus"
|
||||
@click="createNewRecordDialog"
|
||||
>
|
||||
</q-btn>
|
||||
</q-btn>-->
|
||||
<div
|
||||
class="col"
|
||||
v-for="(item, index) in searchList"
|
||||
|
||||
Reference in New Issue
Block a user