Move software files one directory up, Readme
This commit is contained in:
48
src/pages/admin/accountsAdminPage/index.vue
Normal file
48
src/pages/admin/accountsAdminPage/index.vue
Normal file
@@ -0,0 +1,48 @@
|
||||
<script setup lang="ts">
|
||||
import { useAccountStore } from '@/stores/account.store';
|
||||
import adminDataLayout from '@/layouts/adminDataLayout.vue';
|
||||
import { useFeedbackStore } from '@/stores/feedback.store';
|
||||
|
||||
const accountStore = useAccountStore()
|
||||
const feedbackStore = useFeedbackStore()
|
||||
|
||||
const headers = [
|
||||
{ title: feedbackStore.i18n.t('account.userData.username'), value: "username" },
|
||||
{ title: feedbackStore.i18n.t('account.userData.email'), value: "email" },
|
||||
{ title: feedbackStore.i18n.t('account.userData.firstName'), value: "firstName" },
|
||||
{ title: feedbackStore.i18n.t('account.userData.lastName'), value: "lastName" },
|
||||
{ title: feedbackStore.i18n.t('account.accountRole'), value: "accountRole.name" },
|
||||
{ title: "", value: "edit", width: 130 }
|
||||
]
|
||||
|
||||
accountStore.getAllAccounts()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<admin-data-layout
|
||||
:add-button-string="$t('account.addNewAccount')"
|
||||
:fetch-in-progress="accountStore.fetchInProgress"
|
||||
>
|
||||
<v-data-table
|
||||
:items="accountStore.accounts"
|
||||
:loading="accountStore.fetchInProgress"
|
||||
:headers="headers"
|
||||
>
|
||||
<template #item.edit="{ item }">
|
||||
<v-btn
|
||||
icon="mdi-pencil"
|
||||
variant="plain"
|
||||
color="orange"
|
||||
@click="accountStore.editAccount(item)"
|
||||
/>
|
||||
|
||||
<v-btn
|
||||
icon="mdi-delete"
|
||||
variant="plain"
|
||||
color="red"
|
||||
@click="accountStore.deleteAccount(item)"
|
||||
/>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</admin-data-layout>
|
||||
</template>
|
||||
Reference in New Issue
Block a user