mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat(components): 增加头部通知点击弹出层
This commit is contained in:
parent
eb328c3f46
commit
c6b3c729ee
@ -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;
|
||||||
|
@ -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>
|
||||||
|
@ -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">
|
||||||
|
@ -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: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user