feat(components): 增加头部通知点击弹出层

This commit is contained in:
‘chen.home’ 2022-08-12 00:49:49 +08:00
parent eb328c3f46
commit c6b3c729ee
4 changed files with 23 additions and 8 deletions

View File

@ -2,7 +2,6 @@
// import { darkTheme } from 'naive-ui'; // import { darkTheme } from 'naive-ui';
import { zhCN, dateZhCN, GlobalThemeOverrides } from 'naive-ui'; import { zhCN, dateZhCN, GlobalThemeOverrides } from 'naive-ui';
import json from './theme.json'; import json from './theme.json';
// import NativeProvider from '@/components/NativeProvider.vue';
const locale = zhCN; const locale = zhCN;
const dateLocale = dateZhCN; const dateLocale = dateZhCN;

View File

@ -11,10 +11,10 @@
<Breadcrumb /> <Breadcrumb />
</div> </div>
<div class="flex-y-center h-full"> <div class="flex-y-center h-full">
<Notices />
<Github /> <Github />
<FullScreen /> <FullScreen />
<DarkMode /> <DarkMode />
<Notices />
<Setting /> <Setting />
<UserCenter /> <UserCenter />
</div> </div>
@ -24,8 +24,8 @@
<router-view></router-view> <router-view></router-view>
</n-layout-content> </n-layout-content>
</div> </div>
<n-layout-footer position="absolute" class="text-center op-80 bg-transparent"> <n-layout-footer position="absolute" bordered class="flex-center bg-white h-40px">
{{ appStore.title }} {{ appStore.footerText }}
</n-layout-footer> </n-layout-footer>
</n-layout> </n-layout>
</n-layout> </n-layout>

View File

@ -1,10 +1,25 @@
<template> <template>
<n-tooltip placement="bottom" trigger="hover"> <n-popover placement="bottom" trigger="click" arrow-point-to-center style="width: 400px">
<template #trigger> <template #trigger>
<HeaderButton @click="openNotice"><e-icon icon="icon-park-outline:remind" /></HeaderButton> <n-tooltip placement="bottom" trigger="hover">
<template #trigger>
<HeaderButton @click="openNotice"><e-icon icon="icon-park-outline:remind" /></HeaderButton>
</template>
<span>消息通知</span>
</n-tooltip>
</template> </template>
<span>消息通知</span> <n-tabs type="line" animated justify-content="space-evenly">
</n-tooltip> <n-tab-pane name="chap1" tab="通知">
我这辈子最疯狂的事发生在我在 Amazon 当软件工程师的时候故事是这样的
</n-tab-pane>
<n-tab-pane name="chap2" tab="消息">
威尔着火了快来帮忙我听到女朋友大喊现在一个难题在我面前是恢复一个重要的 Amazon 服务还是救公寓的火
</n-tab-pane>
<n-tab-pane name="chap3" tab="待办">
但是忽然公寓的烟味消失火警也停了我的女朋友走进了房间让我震惊的是她摘下了自己的假发她是 Jeff
</n-tab-pane>
</n-tabs>
</n-popover>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">

View File

@ -7,6 +7,7 @@ export const useAppStore = defineStore('app-store', {
fullScreen: false, fullScreen: false,
darkMode: false, darkMode: false,
title: import.meta.env.VITE_APP_TITLE, title: import.meta.env.VITE_APP_TITLE,
footerText: '哲学的基本问题是思维和存在的关系问题',
}; };
}, },
actions: { actions: {