fix: 02-personnel layout
This commit is contained in:
parent
bfec8255ff
commit
2fd21a5ac7
1 changed files with 188 additions and 181 deletions
|
|
@ -534,6 +534,7 @@ watch(inputSearch, async () => await fetchUserList());
|
|||
</ButtonAddComponent>
|
||||
|
||||
<!-- stat -->
|
||||
<div class="column full-height no-wrap">
|
||||
<div class="scroll q-mb-md">
|
||||
<div style="display: inline-block">
|
||||
<StatCardComponent
|
||||
|
|
@ -550,6 +551,7 @@ watch(inputSearch, async () => await fetchUserList());
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- main -->
|
||||
<div
|
||||
class="col scroll bordered surface-1 rounded q-pa-md justify-between column no-wrap"
|
||||
|
|
@ -614,7 +616,10 @@ watch(inputSearch, async () => await fetchUserList());
|
|||
:list="
|
||||
userData?.result
|
||||
.filter((v) => {
|
||||
if (statusFilter === 'statusACTIVE' && v.status === 'INACTIVE') {
|
||||
if (
|
||||
statusFilter === 'statusACTIVE' &&
|
||||
v.status === 'INACTIVE'
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
if (
|
||||
|
|
@ -696,6 +701,7 @@ watch(inputSearch, async () => await fetchUserList());
|
|||
<q-list>
|
||||
<q-item
|
||||
v-for="v in [10, 30, 50, 100, 500, 1000]"
|
||||
:key="v"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click="
|
||||
|
|
@ -732,6 +738,7 @@ watch(inputSearch, async () => await fetchUserList());
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<DrawerInfo
|
||||
v-if="currentUser"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue