forked from verdnatura/salix-front
Show claim filter panel
This commit is contained in:
parent
79d6b2139c
commit
c09437f00e
|
@ -17,17 +17,8 @@ const router = useRouter();
|
|||
const quasar = useQuasar();
|
||||
const { t } = useI18n();
|
||||
|
||||
onMounted(() => {
|
||||
if (!stateStore.rightDrawer) {
|
||||
stateStore.toggleRightDrawer();
|
||||
}
|
||||
});
|
||||
|
||||
onUnmounted(() => {
|
||||
if (stateStore.rightDrawer) {
|
||||
stateStore.toggleRightDrawer();
|
||||
}
|
||||
});
|
||||
onMounted(() => (stateStore.rightDrawer = true));
|
||||
onUnmounted(() => (stateStore.rightDrawer = false));
|
||||
|
||||
function stateColor(code) {
|
||||
if (code === 'pending') return 'green';
|
||||
|
|
Loading…
Reference in New Issue