fix: drawer menu dark mode, rearrange
This commit is contained in:
parent
05c1c07384
commit
13bf8e9ee0
1 changed files with 7 additions and 2 deletions
|
|
@ -128,9 +128,9 @@ onMounted(async () => {
|
||||||
? false
|
? false
|
||||||
: true,
|
: true,
|
||||||
},
|
},
|
||||||
|
{ label: 'workflow', route: '/workflow' },
|
||||||
{ label: 'productService', route: '/product-service' },
|
{ label: 'productService', route: '/product-service' },
|
||||||
{ label: 'document', route: '/document-management' },
|
{ label: 'document', route: '/document-management' },
|
||||||
{ label: 'workflow', route: '/workflow' },
|
|
||||||
{ label: 'customer', route: '/customer-management' },
|
{ label: 'customer', route: '/customer-management' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
@ -242,7 +242,12 @@ onMounted(async () => {
|
||||||
style="font-size: 24px"
|
style="font-size: 24px"
|
||||||
/>
|
/>
|
||||||
<Icon v-else :icon="menu.icon || ''" width="24px" />
|
<Icon v-else :icon="menu.icon || ''" width="24px" />
|
||||||
<span v-if="!mini" class="q-pl-sm" style="white-space: nowrap">
|
<span
|
||||||
|
v-if="!mini"
|
||||||
|
class="q-pl-sm"
|
||||||
|
style="white-space: nowrap"
|
||||||
|
:style="!menuActive[i] && `color: var(--foreground)`"
|
||||||
|
>
|
||||||
{{ $t(`${menu.label}.title`) }}
|
{{ $t(`${menu.label}.title`) }}
|
||||||
</span>
|
</span>
|
||||||
<q-tooltip :delay="500">
|
<q-tooltip :delay="500">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue