fix: customer info component
This commit is contained in:
parent
c7268bde3e
commit
2da8a54789
1 changed files with 14 additions and 2 deletions
|
|
@ -267,7 +267,7 @@ watch([inputSearch, currentStatus], async () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="row q-pa-md col scroll full-width"
|
class="row q-pa-md col scroll full-width surface-2"
|
||||||
:class="{
|
:class="{
|
||||||
'justify-center': totalBranch === 0,
|
'justify-center': totalBranch === 0,
|
||||||
'items-center': totalBranch === 0,
|
'items-center': totalBranch === 0,
|
||||||
|
|
@ -380,6 +380,17 @@ watch([inputSearch, currentStatus], async () => {
|
||||||
>
|
>
|
||||||
{{ props.row._count?.employee }}
|
{{ props.row._count?.employee }}
|
||||||
</q-td>
|
</q-td>
|
||||||
|
<q-td>
|
||||||
|
<q-btn
|
||||||
|
icon="mdi-eye-outline"
|
||||||
|
:id="`btn-eye-${props.row.customerName}`"
|
||||||
|
size="sm"
|
||||||
|
dense
|
||||||
|
round
|
||||||
|
flat
|
||||||
|
@click="$emit('viewDetail', props.row, props.rowIndex)"
|
||||||
|
/>
|
||||||
|
</q-td>
|
||||||
</q-tr>
|
</q-tr>
|
||||||
</template>
|
</template>
|
||||||
<template #item="props">
|
<template #item="props">
|
||||||
|
|
@ -412,7 +423,8 @@ watch([inputSearch, currentStatus], async () => {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row justify-between items-center q-px-md q-py-sm surface-2">
|
<div class="row justify-between items-center q-px-md q-py-sm surface-2">
|
||||||
<div class="app-text-muted col offset-md-4">
|
<div class="col"></div>
|
||||||
|
<div class="app-text-muted col text-center">
|
||||||
{{
|
{{
|
||||||
$t('recordsPage', {
|
$t('recordsPage', {
|
||||||
resultcurrentPage: branch?.length,
|
resultcurrentPage: branch?.length,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue