fix: Right menu double icon
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
286fbc5aba
commit
20eb26127a
|
@ -515,38 +515,32 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QBtnGroup>
|
</QBtnGroup>
|
||||||
</template>
|
</template>
|
||||||
</VnSubToolbar>
|
</VnSubToolbar>
|
||||||
<RightMenu>
|
<QDrawer side="right" :width="270" v-model="stateStore.rightDrawer">
|
||||||
<template #right-panel>
|
<div
|
||||||
<div
|
class="q-pa-md q-mb-md q-ma-md color-vn-text"
|
||||||
class="q-pa-md q-mb-md q-ma-md color-vn-text"
|
style="border: 2px solid black"
|
||||||
style="border: 2px solid black"
|
>
|
||||||
|
<QCardSection class="justify-center text-subtitle1" horizontal>
|
||||||
|
<span class="q-mr-xs color-vn-label"
|
||||||
|
>{{ t('ticketSale.subtotal') }}:
|
||||||
|
</span>
|
||||||
|
<span>{{ toCurrency(store.data?.totalWithoutVat) }}</span>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="justify-center text-subtitle1" horizontal>
|
||||||
|
<span class="q-mr-xs color-vn-label"> {{ t('ticketSale.tax') }}: </span>
|
||||||
|
<span>{{
|
||||||
|
toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat)
|
||||||
|
}}</span>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection
|
||||||
|
class="justify-center text-weight-bold text-subtitle1"
|
||||||
|
horizontal
|
||||||
>
|
>
|
||||||
<QCardSection class="justify-center text-subtitle1" horizontal>
|
<span class="q-mr-xs color-vn-label"> {{ t('ticketSale.total') }}: </span>
|
||||||
<span class="q-mr-xs color-vn-label"
|
<span>{{ toCurrency(store.data?.totalWithVat) }}</span>
|
||||||
>{{ t('ticketSale.subtotal') }}:
|
</QCardSection>
|
||||||
</span>
|
</div></QDrawer
|
||||||
<span>{{ toCurrency(store.data?.totalWithoutVat) }}</span>
|
>
|
||||||
</QCardSection>
|
|
||||||
<QCardSection class="justify-center text-subtitle1" horizontal>
|
|
||||||
<span class="q-mr-xs color-vn-label">
|
|
||||||
{{ t('ticketSale.tax') }}:
|
|
||||||
</span>
|
|
||||||
<span>{{
|
|
||||||
toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat)
|
|
||||||
}}</span>
|
|
||||||
</QCardSection>
|
|
||||||
<QCardSection
|
|
||||||
class="justify-center text-weight-bold text-subtitle1"
|
|
||||||
horizontal
|
|
||||||
>
|
|
||||||
<span class="q-mr-xs color-vn-label">
|
|
||||||
{{ t('ticketSale.total') }}:
|
|
||||||
</span>
|
|
||||||
<span>{{ toCurrency(store.data?.totalWithVat) }}</span>
|
|
||||||
</QCardSection>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</RightMenu>
|
|
||||||
<QTable
|
<QTable
|
||||||
:rows="sales"
|
:rows="sales"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
|
|
Loading…
Reference in New Issue