mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 00:34:28 +08:00
modify style
This commit is contained in:
@@ -138,6 +138,9 @@
|
|||||||
:loading="categoryHiding[element.id]"
|
:loading="categoryHiding[element.id]"
|
||||||
:disabled="loading || updating"
|
:disabled="loading || updating"
|
||||||
@click="hide(element, !element.hidden)">
|
@click="hide(element, !element.hidden)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ element.hidden ? $t('Show') : $t('Hide') }}
|
{{ element.hidden ? $t('Show') : $t('Hide') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn class="px-2" color="default"
|
<v-btn class="px-2" color="default"
|
||||||
@@ -155,6 +158,9 @@
|
|||||||
:loading="categoryRemoving[element.id]"
|
:loading="categoryRemoving[element.id]"
|
||||||
:disabled="loading || updating"
|
:disabled="loading || updating"
|
||||||
@click="remove(element)">
|
@click="remove(element)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ $t('Delete') }}
|
{{ $t('Delete') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<span class="ml-2">
|
<span class="ml-2">
|
||||||
|
|||||||
@@ -114,6 +114,9 @@
|
|||||||
:disabled="loading || updating"
|
:disabled="loading || updating"
|
||||||
v-if="editingTag.id !== element.id"
|
v-if="editingTag.id !== element.id"
|
||||||
@click="hide(element, !element.hidden)">
|
@click="hide(element, !element.hidden)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ element.hidden ? $t('Show') : $t('Hide') }}
|
{{ element.hidden ? $t('Show') : $t('Hide') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn class="px-2" color="default"
|
<v-btn class="px-2" color="default"
|
||||||
@@ -124,6 +127,9 @@
|
|||||||
:disabled="loading || updating"
|
:disabled="loading || updating"
|
||||||
v-if="editingTag.id !== element.id"
|
v-if="editingTag.id !== element.id"
|
||||||
@click="edit(element)">
|
@click="edit(element)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ $t('Edit') }}
|
{{ $t('Edit') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn class="px-2" color="default"
|
<v-btn class="px-2" color="default"
|
||||||
@@ -134,6 +140,9 @@
|
|||||||
:disabled="loading || updating"
|
:disabled="loading || updating"
|
||||||
v-if="editingTag.id !== element.id"
|
v-if="editingTag.id !== element.id"
|
||||||
@click="remove(element)">
|
@click="remove(element)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ $t('Delete') }}
|
{{ $t('Delete') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn class="px-2"
|
<v-btn class="px-2"
|
||||||
@@ -142,6 +151,9 @@
|
|||||||
:loading="tagUpdating[element.id]"
|
:loading="tagUpdating[element.id]"
|
||||||
:disabled="loading || updating || !isTagModified(element)"
|
:disabled="loading || updating || !isTagModified(element)"
|
||||||
v-if="editingTag.id === element.id" @click="save(editingTag)">
|
v-if="editingTag.id === element.id" @click="save(editingTag)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ $t('Save') }}
|
{{ $t('Save') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn class="px-2" color="default"
|
<v-btn class="px-2" color="default"
|
||||||
@@ -182,6 +194,9 @@
|
|||||||
:loading="tagUpdating[null]"
|
:loading="tagUpdating[null]"
|
||||||
:disabled="loading || updating || !isTagModified(newTag)"
|
:disabled="loading || updating || !isTagModified(newTag)"
|
||||||
@click="save(newTag)">
|
@click="save(newTag)">
|
||||||
|
<template #loader>
|
||||||
|
<v-progress-circular indeterminate size="20" width="2"/>
|
||||||
|
</template>
|
||||||
{{ $t('Save') }}
|
{{ $t('Save') }}
|
||||||
</v-btn>
|
</v-btn>
|
||||||
<v-btn class="px-2" color="default"
|
<v-btn class="px-2" color="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user