ver 1.1.20:
- corretto campo foto che non compariva più. - sistemato i campi aggiuntivi e i richiesti. - migliorato la barra in alto di selezione. - aggiunto alcune icone.
This commit is contained in:
@@ -123,6 +123,17 @@ export default defineComponent({
|
||||
}
|
||||
return ''
|
||||
})
|
||||
const colorsel = computed(() => {
|
||||
const myarr: any = tools.getoptionsMainCards(false)
|
||||
if (myarr) {
|
||||
const rec = myarr.find((rec: any) => rec.value === tablesel.value)
|
||||
|
||||
if (rec) {
|
||||
return rec.color
|
||||
}
|
||||
}
|
||||
return ''
|
||||
})
|
||||
const myfilter = ref('')
|
||||
const myfilterand: any = ref([])
|
||||
let rowsel: any = {}
|
||||
@@ -362,6 +373,7 @@ export default defineComponent({
|
||||
iconsel,
|
||||
filtri,
|
||||
clickButtBar,
|
||||
colorsel,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -25,20 +25,22 @@
|
||||
/>
|
||||
</q-avatar>
|
||||
</div>
|
||||
<div class="col-fixed" style="width: 200px">
|
||||
<div class="col-fixed " style="width: 200px;">
|
||||
<q-select
|
||||
dense
|
||||
v-model="tablesel"
|
||||
:options="optionsMainCards"
|
||||
emit-value
|
||||
borderless
|
||||
class="text-blue"
|
||||
rounded
|
||||
dense
|
||||
filled
|
||||
class="text-blue q-ml-sm"
|
||||
bg-color="light-blue-2"
|
||||
map-options
|
||||
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
|
||||
@update:model-value="gotoPageSel"
|
||||
>
|
||||
<template v-slot:prepend>
|
||||
<q-icon :name="iconsel" />
|
||||
<q-icon :name="iconsel" :color="colorsel" />
|
||||
</template>
|
||||
<template v-slot:option="scope">
|
||||
<q-item v-bind="scope.itemProps">
|
||||
|
||||
Reference in New Issue
Block a user