システム管理者専用のページを追加しました。

This commit is contained in:
Mouriya
2024-08-19 21:24:38 +09:00
parent 9eb87fe3f3
commit 2f11323193

View File

@@ -2,40 +2,26 @@
<q-layout view="lHh Lpr lFf">
<q-header elevated>
<q-toolbar>
<q-btn
flat
dense
round
icon="menu"
aria-label="Menu"
@click="toggleLeftDrawer"
/>
<q-btn flat dense round icon="menu" aria-label="Menu" @click="toggleLeftDrawer" />
<q-toolbar-title>
{{ productName }}
<q-badge align="top" outline>V{{ version }}</q-badge>
</q-toolbar-title>
<domain-selector></domain-selector>
<q-btn flat round dense icon="logout" @click="authStore.logout()"/>
<q-btn flat round dense icon="logout" @click="authStore.logout()" />
</q-toolbar>
</q-header>
<q-drawer
:model-value="authStore.LeftDrawer"
:show-if-above="false"
bordered
>
<q-drawer :model-value="authStore.LeftDrawer" :show-if-above="false" bordered>
<q-list>
<q-item-label
header
>
<q-item-label header>
メニュー
</q-item-label>
<EssentialLink
v-for="link in essentialLinks"
:key="link.title"
v-bind="link"
/>
<EssentialLink v-for="link in essentialLinks" :key="link.title" v-bind="link" />
<div v-if="isAdmin">
<EssentialLink v-for="link in adminLinks" :key="link.title" v-bind="link" />
</div>
</q-list>
</q-drawer>
@@ -54,19 +40,19 @@ import { useAuthStore } from 'stores/useAuthStore';
const authStore = useAuthStore();
const essentialLinks: EssentialLinkProps[] = [
{
{
title: 'ホーム',
caption: '設計書から導入する',
icon: 'home',
link: '/',
target:'_self'
target: '_self'
},
{
title: 'フローエディター',
caption: 'イベントを設定する',
icon: 'account_tree',
link: '/#/FlowChart',
target:'_self'
target: '_self'
},
// {
// title: '条件エディター',
@@ -76,8 +62,8 @@ const essentialLinks: EssentialLinkProps[] = [
// target:'_self'
// },
{
title:'',
isSeparator:true
title: '',
isSeparator: true
},
// {
// title:'Kintone ポータル',
@@ -151,8 +137,33 @@ const essentialLinks: EssentialLinkProps[] = [
// }
];
const adminLinks: EssentialLinkProps[] = [
{
title: 'ユーザー',
caption: 'ユーザー設定する',
icon: 'manage_accounts',
link: '/#/user',
target: '_self'
},
{
title: 'テナント',
caption: 'テナント設定',
icon: 'domain',
link: '/#/domain',
target: '_self'
},
{
title: 'アカウント',
caption: 'アカウント設定',
icon: 'assignment_ind',
link: '/#/userDomain',
target: '_self'
},
]
const version = process.env.version;
const productName = process.env.productName;
onMounted(() => {
authStore.toggleLeftMenu();
});
@@ -160,4 +171,8 @@ onMounted(() => {
function toggleLeftDrawer() {
authStore.toggleLeftMenu();
}
function isAdmin(){
const permission = authStore.permissions;
return permission === 'admin'
}
</script>