refactor: change icon btn
This commit is contained in:
parent
c3b707c945
commit
f2cb7fcd5a
1 changed files with 15 additions and 7 deletions
|
|
@ -484,15 +484,11 @@ watch([customerId, inputSearch, currentStatus], async () => {
|
|||
}
|
||||
"
|
||||
/>
|
||||
|
||||
<q-btn
|
||||
class="btn-arrow-right"
|
||||
:class="{ active: currentBtnOpen[props.rowIndex] }"
|
||||
icon="mdi-arrow-right-bold-outline"
|
||||
size="sm"
|
||||
dense
|
||||
round
|
||||
flat
|
||||
@click="
|
||||
@click.stop="
|
||||
async () => {
|
||||
const res = await fetchBranchEmployee(props.row.id);
|
||||
|
||||
|
|
@ -503,7 +499,19 @@ watch([customerId, inputSearch, currentStatus], async () => {
|
|||
}
|
||||
}
|
||||
"
|
||||
/>
|
||||
>
|
||||
<div class="row items-center">
|
||||
<q-icon name="mdi-account-group-outline" />
|
||||
<q-icon
|
||||
class="btn-arrow-right"
|
||||
:class="{
|
||||
active: currentBtnOpen[props.rowIndex],
|
||||
}"
|
||||
size="xs"
|
||||
name="mdi-chevron-right"
|
||||
/>
|
||||
</div>
|
||||
</q-btn>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue