remove unuse file

This commit is contained in:
jxxghp
2023-07-07 12:52:40 +08:00
parent 99b7a6d0f2
commit e8372b8566
41 changed files with 487 additions and 4299 deletions

View File

@@ -1,7 +1,7 @@
<script setup lang="ts">
import router from '@/router';
import avatar1 from '@images/avatars/avatar-1.png';
import { useStore } from 'vuex';
import router from "@/router";
import avatar1 from "@images/avatars/avatar-1.png";
import { useStore } from "vuex";
// Vuex Store
const store = useStore();
@@ -9,36 +9,20 @@ const store = useStore();
// 执行注销操作
const logout = () => {
// 清除登录状态信息
store.dispatch('auth/clearToken');
store.dispatch("auth/clearToken");
// 重定向到登录页面或其他适当的页面
router.push('/login')
}
router.push("/login");
};
</script>
<template>
<VBadge
dot
location="bottom right"
offset-x="3"
offset-y="3"
color="success"
bordered
>
<VAvatar
class="cursor-pointer"
color="primary"
variant="tonal"
>
<VBadge dot location="bottom right" offset-x="3" offset-y="3" color="success" bordered>
<VAvatar class="cursor-pointer" color="primary" variant="tonal">
<VImg :src="avatar1" />
<!-- SECTION Menu -->
<VMenu
activator="parent"
width="230"
location="bottom end"
offset="14px"
>
<VMenu activator="parent" width="230" location="bottom end" offset="14px">
<VList>
<!-- 👉 User Avatar & Name -->
<VListItem>
@@ -51,34 +35,22 @@ const logout = () => {
offset-y="3"
color="success"
>
<VAvatar
color="primary"
variant="tonal"
>
<VAvatar color="primary" variant="tonal">
<VImg :src="avatar1" />
</VAvatar>
</VBadge>
</VListItemAction>
</template>
<VListItemTitle class="font-weight-semibold">
管理员
</VListItemTitle>
<VListItemTitle class="font-weight-semibold"> 管理员 </VListItemTitle>
<VListItemSubtitle>Admin</VListItemSubtitle>
</VListItem>
<VDivider class="my-2" />
<!-- 👉 Profile -->
<VListItem
link
to="account-settings"
>
<VListItem link to="account-setting">
<template #prepend>
<VIcon
class="me-2"
icon="mdi-account-outline"
size="22"
/>
<VIcon class="me-2" icon="mdi-account-outline" size="22" />
</template>
<VListItemTitle>个人中心</VListItemTitle>
@@ -87,11 +59,7 @@ const logout = () => {
<!-- 👉 FAQ -->
<VListItem link>
<template #prepend>
<VIcon
class="me-2"
icon="mdi-help-circle-outline"
size="22"
/>
<VIcon class="me-2" icon="mdi-help-circle-outline" size="22" />
</template>
<VListItemTitle>帮助</VListItemTitle>
@@ -103,11 +71,7 @@ const logout = () => {
<!-- 👉 Logout -->
<VListItem @click="logout">
<template #prepend>
<VIcon
class="me-2"
icon="mdi-logout"
size="22"
/>
<VIcon class="me-2" icon="mdi-logout" size="22" />
</template>
<VListItemTitle>注销</VListItemTitle>