forked from verdnatura/salix-front
fix: refs #5186 css, required files & routes
This commit is contained in:
parent
33ef118dea
commit
37f155aa85
|
@ -50,6 +50,7 @@ const filter = {
|
||||||
:options="sectors"
|
:options="sectors"
|
||||||
use-input
|
use-input
|
||||||
input-debounce="0"
|
input-debounce="0"
|
||||||
|
:is-clearable="false"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -29,9 +29,12 @@ const filter = {
|
||||||
<template #body="{ entity: parking }">
|
<template #body="{ entity: parking }">
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
<QCardSection class="q-pa-none">
|
<QCardSection class="q-pa-none">
|
||||||
<a class="header" :href="`#/parking/${entityId}/basic-data`">
|
<a
|
||||||
|
class="header header-link"
|
||||||
|
:href="`#/parking/${entityId}/basic-data`"
|
||||||
|
>
|
||||||
{{ t('parking.pageTitles.basicData') }}
|
{{ t('parking.pageTitles.basicData') }}
|
||||||
<QIcon name="open_in_new" color="primary" />
|
<QIcon name="open_in_new" />
|
||||||
</a>
|
</a>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<VnLv :label="t('parking.summary.code')" :value="parking.code" />
|
<VnLv :label="t('parking.summary.code')" :value="parking.code" />
|
||||||
|
|
|
@ -38,13 +38,19 @@ export default {
|
||||||
component: () => import('src/pages/Shelving/Card/ShelvingForm.vue'),
|
component: () => import('src/pages/Shelving/Card/ShelvingForm.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/parking/list',
|
path: '/parking',
|
||||||
name: 'ParkingList',
|
redirect: { name: 'ParkingList' },
|
||||||
meta: {
|
children: [
|
||||||
title: 'parkingList',
|
{
|
||||||
icon: 'view_list',
|
path: 'list',
|
||||||
},
|
name: 'ParkingList',
|
||||||
component: () => import('src/pages/Parking/ParkingList.vue'),
|
meta: {
|
||||||
|
title: 'parkingList',
|
||||||
|
icon: 'view_list',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Parking/ParkingList.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue