fix: table height
This commit is contained in:
parent
5c6f201a99
commit
efb638f8ae
1 changed files with 5 additions and 4 deletions
|
|
@ -1105,8 +1105,8 @@ watch(
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col scroll q-pa-md full-width">
|
<div class="col scroll q-pa-md full-width full-height">
|
||||||
<div v-if="userData && userData.total > 0 && !inputSearch">
|
<template v-if="userData && userData.total > 0 && !inputSearch">
|
||||||
<q-table
|
<q-table
|
||||||
flat
|
flat
|
||||||
bordered
|
bordered
|
||||||
|
|
@ -1131,7 +1131,8 @@ watch(
|
||||||
})
|
})
|
||||||
"
|
"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
class="full-width"
|
style="max-height: 100%"
|
||||||
|
class="full-width full-height"
|
||||||
card-container-class="q-col-gutter-md"
|
card-container-class="q-col-gutter-md"
|
||||||
row-key="name"
|
row-key="name"
|
||||||
:rows-per-page-options="[0]"
|
:rows-per-page-options="[0]"
|
||||||
|
|
@ -1466,7 +1467,7 @@ watch(
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</q-table>
|
</q-table>
|
||||||
</div>
|
</template>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="userData && userData.total === 0 && !inputSearch"
|
v-if="userData && userData.total === 0 && !inputSearch"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue