2020-03-01 18:18:58 +00:00
|
|
|
<template>
|
|
|
|
<v-list>
|
2020-05-24 21:24:58 +00:00
|
|
|
<v-list-item link :to="{name: 'serviceManagement', params: {year: new Date().getFullYear(), month: new Date().getMonth() + 1}}"> <v-list-item-icon>
|
2020-03-01 18:18:58 +00:00
|
|
|
<v-icon>{{ work }}</v-icon>
|
|
|
|
</v-list-item-icon>
|
|
|
|
<v-list-item-title>
|
|
|
|
Dienstverwaltung
|
|
|
|
</v-list-item-title>
|
|
|
|
</v-list-item>
|
2020-05-27 10:09:54 +00:00
|
|
|
<v-list-item link :to="{name: 'userManager'}">
|
2020-03-03 21:29:32 +00:00
|
|
|
<v-list-item-icon>
|
|
|
|
<v-icon>{{list}}</v-icon>
|
|
|
|
</v-list-item-icon>
|
|
|
|
<v-list-item-title>
|
|
|
|
Benutzerliste
|
|
|
|
</v-list-item-title>
|
|
|
|
</v-list-item>
|
2020-05-27 10:09:54 +00:00
|
|
|
<v-list-item link :to="{name: 'workgroupManagement'}">
|
2020-05-16 21:24:14 +00:00
|
|
|
<v-list-item-icon>
|
|
|
|
<v-icon>{{group}}</v-icon>
|
|
|
|
</v-list-item-icon>
|
|
|
|
<v-list-item-title>
|
|
|
|
Arbeitsgruppen
|
|
|
|
</v-list-item-title>
|
|
|
|
</v-list-item>
|
2020-05-27 10:09:54 +00:00
|
|
|
<v-list-item link :to="{name: 'jobkindManagement'}">
|
2020-05-17 18:22:03 +00:00
|
|
|
<v-list-item-icon>
|
2020-06-06 12:00:26 +00:00
|
|
|
<v-icon>{{jobs}}</v-icon>
|
2020-05-17 18:22:03 +00:00
|
|
|
</v-list-item-icon>
|
|
|
|
<v-list-item-title>
|
|
|
|
Dienstarten
|
|
|
|
</v-list-item-title>
|
|
|
|
</v-list-item>
|
2020-03-01 18:18:58 +00:00
|
|
|
</v-list>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-06-06 12:00:26 +00:00
|
|
|
import { mdiBriefcase, mdiAccountMultiple, mdiAccountGroup, mdiAccountNetwork } from '@mdi/js'
|
2020-03-01 18:18:58 +00:00
|
|
|
export default {
|
|
|
|
name: 'ManagementNavigation',
|
|
|
|
data() {
|
|
|
|
return {
|
2020-03-03 21:29:32 +00:00
|
|
|
work: mdiBriefcase,
|
2020-05-16 21:24:14 +00:00
|
|
|
list: mdiAccountMultiple,
|
2020-06-06 12:00:26 +00:00
|
|
|
group: mdiAccountGroup,
|
|
|
|
jobs: mdiAccountNetwork
|
2020-03-01 18:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped></style>
|