fix: router permission

This commit is contained in:
chansee97 2024-03-16 20:33:46 +08:00
parent 3a53910c3e
commit 1a2635af58
12 changed files with 126 additions and 129 deletions

View File

@ -10,12 +10,12 @@ export function setupCopy(app: App) {
function clipboardEnable() { function clipboardEnable() {
if (!isSupported.value) { if (!isSupported.value) {
window.$message?.error('Your browser does not support Clipboard API') window.$message.error('Your browser does not support Clipboard API')
return false return false
} }
if (permissionWrite.value !== 'granted') { if (permissionWrite.value !== 'granted') {
window.$message?.error('Currently not permitted to use Clipboard API') window.$message.error('Currently not permitted to use Clipboard API')
return false return false
} }
return true return true
@ -25,7 +25,7 @@ export function setupCopy(app: App) {
if (!clipboardEnable()) if (!clipboardEnable())
return return
copy(this._copyText) copy(this._copyText)
window.$message?.success('复制成功') window.$message.success('复制成功')
} }
function updataClipboard(el: CopyHTMLElement, text: string) { function updataClipboard(el: CopyHTMLElement, text: string) {

View File

@ -8,15 +8,12 @@ const emit = defineEmits<Emits>()
interface Emits { interface Emits {
(e: 'read', val: number): void (e: 'read', val: number): void
} }
function handleRead(index: number) {
emit('read', index)
}
</script> </script>
<template> <template>
<n-scrollbar style="height: 400px"> <n-scrollbar style="height: 400px">
<n-list hoverable clickable> <n-list hoverable clickable>
<n-list-item v-for="(item, index) in props.list" :key="item.id" @click="handleRead(index)"> <n-list-item v-for="(item) in props.list" :key="item.id" @click="emit('read', item.id)">
<n-thing content-indented :class="{ 'opacity-30': item.isRead }"> <n-thing content-indented :class="{ 'opacity-30': item.isRead }">
<template #header> <template #header>
<n-ellipsis :line-clamp="1"> <n-ellipsis :line-clamp="1">

View File

@ -1,105 +1,98 @@
<script setup lang="ts"> <script setup lang="ts">
import { group } from 'radash'
import HeaderButton from '../common/HeaderButton.vue' import HeaderButton from '../common/HeaderButton.vue'
import NoticeList from '../common/NoticeList.vue' import NoticeList from '../common/NoticeList.vue'
const MassageData = ref<Message.Tab[]>([ const MassageData = ref<Message.List[]>([
{ {
key: 0, id: 0,
name: '通知', type: 0,
badgeProps: { type: 'warning' }, title: 'Admin 已经完成40%了!',
list: [ icon: 'icon-park-outline:tips-one',
{ tagTitle: '未开始',
id: 0, tagType: 'info',
title: 'Admin 已经完成40%了!', description: '项目稳定推进中,很快就能看到正式版了',
icon: 'icon-park-outline:tips-one', date: '2022-2-2 12:22',
tagTitle: '未开始', },
tagType: 'info', {
description: '项目稳定推进中,很快就能看到正式版了', id: 1,
date: '2022-2-2 12:22', type: 0,
}, title: 'Admin 已经添加通知功能!',
{ icon: 'icon-park-outline:comment-one',
id: 1, tagTitle: '未开始',
title: 'Admin 已经添加通知功能!', tagType: 'success',
icon: 'icon-park-outline:comment-one', date: '2022-2-2 12:22',
tagTitle: '未开始', },
tagType: 'success', {
date: '2022-2-2 12:22', id: 2,
}, type: 0,
{ title: 'Admin 已经添加路由功能!',
id: 2, icon: 'icon-park-outline:message-emoji',
title: 'Admin 已经添加路由功能!', tagTitle: '未开始',
icon: 'icon-park-outline:message-emoji', tagType: 'warning',
tagTitle: '未开始', description: '项目稳定推进中...',
tagType: 'warning', date: '2022-2-5 18:32',
description: '项目稳定推进中...', },
date: '2022-2-5 18:32', {
}, id: 3,
{ type: 0,
id: 3, title:
title:
'Admin 已经添加菜单导航功能Admin 已经添加菜单导航功能Admin 已经添加菜单导航功能Admin 已经添加菜单导航功能!', 'Admin 已经添加菜单导航功能Admin 已经添加菜单导航功能Admin 已经添加菜单导航功能Admin 已经添加菜单导航功能!',
icon: 'icon-park-outline:tips-one', icon: 'icon-park-outline:tips-one',
tagTitle: '未开始', tagTitle: '未开始',
tagType: 'error', tagType: 'error',
description: description:
'项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...', '项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...项目稳定推进中...',
date: '2022-2-5 18:32', date: '2022-2-5 18:32',
},
{
id: 4,
title: 'Admin开始启动了',
icon: 'icon-park-outline:tips-one',
tagTitle: '未开始',
description: '项目稳定推进中...',
date: '2022-2-5 18:32',
},
],
}, },
{ {
key: 1, id: 4,
name: '消息', type: 0,
badgeProps: { type: 'info' }, title: 'Admin开始启动了',
list: [ icon: 'icon-park-outline:tips-one',
{ tagTitle: '未开始',
id: 0, description: '项目稳定推进中...',
title: '相见恨晚??', date: '2022-2-5 18:32',
icon: 'icon-park-outline:comment',
description: '项目稳定推进中,很快就能看到正式版了',
date: '2022-2-2 12:22',
},
{
id: 1,
title: '动态路由已完成!',
icon: 'icon-park-outline:comment',
description: '项目稳定推进中,很快就能看到正式版了',
date: '2022-2-25 12:22',
},
],
}, },
{ {
key: 2, id: 5,
name: '待办', type: 1,
badgeProps: { type: 'error' }, title: '相见恨晚??',
list: [ icon: 'icon-park-outline:comment',
{ description: '项目稳定推进中,很快就能看到正式版了',
id: 0, date: '2022-2-2 12:22',
title: '接下来需要完善一些', },
icon: 'icon-park-outline:beach-umbrella', {
tagTitle: '未开始', id: 6,
description: '项目稳定推进中,很快就能看到正式版了', type: 1,
date: '2022-2-2 12:22', title: '动态路由已完成!',
}, icon: 'icon-park-outline:comment',
], description: '项目稳定推进中,很快就能看到正式版了',
date: '2022-2-25 12:22',
},
{
id: 7,
type: 2,
title: '接下来需要完善一些',
icon: 'icon-park-outline:beach-umbrella',
tagTitle: '未开始',
description: '项目稳定推进中,很快就能看到正式版了',
date: '2022-2-2 12:22',
}, },
]) ])
const currentTab = ref(0) const currentTab = ref(0)
function handleRead(index: number) { function handleRead(id: number) {
MassageData.value[currentTab.value].list[index].isRead = true // MassageData.value[currentTab.value].list[index].isRead = true
const data = MassageData.value.find(i => i.id === id)
if (data)
data.isRead = true
window.$message.success(`已读id: ${id}`)
} }
const massageCount = computed(() => { const massageCount = computed(() => {
return MassageData.value.reduce((pre, cur) => { return MassageData.value.filter(i => !i.isRead).length
return pre + cur.list.filter(item => !item.isRead).length })
}, 0) const groupMessage = computed(() => {
return group(MassageData.value, i => i.type)
}) })
</script> </script>
@ -118,14 +111,32 @@ const massageCount = computed(() => {
</n-tooltip> </n-tooltip>
</template> </template>
<n-tabs v-model:value="currentTab" type="line" animated justify-content="space-evenly" class="w-390px"> <n-tabs v-model:value="currentTab" type="line" animated justify-content="space-evenly" class="w-390px">
<n-tab-pane v-for="item in MassageData" :key="item.key" :name="item.key"> <n-tab-pane :name="0">
<template #tab> <template #tab>
<n-space class="w-130px" justify="center"> <n-space class="w-130px" justify="center">
{{ item.name }} 通知
<n-badge v-bind="item.badgeProps" :value="item.list.filter((item) => !item.isRead).length" :max="99" /> <n-badge type="info" :value="groupMessage[0]?.filter(i => !i.isRead).length" :max="99" />
</n-space> </n-space>
</template> </template>
<NoticeList :list="item.list" @read="handleRead" /> <NoticeList :list="groupMessage[0]" @read="handleRead" />
</n-tab-pane>
<n-tab-pane :name="1">
<template #tab>
<n-space class="w-130px" justify="center">
消息
<n-badge type="warning" :value="groupMessage[1]?.filter(i => !i.isRead).length" :max="99" />
</n-space>
</template>
<NoticeList :list="groupMessage[1]" @read="handleRead" />
</n-tab-pane>
<n-tab-pane :name="2">
<template #tab>
<n-space class="w-130px" justify="center">
待办
<n-badge type="error" :value="groupMessage[2]?.filter(i => !i.isRead).length" :max="99" />
</n-space>
</template>
<NoticeList :list="groupMessage[2]" @read="handleRead" />
</n-tab-pane> </n-tab-pane>
</n-tabs> </n-tabs>
</n-popover> </n-popover>

View File

@ -2,7 +2,7 @@
import HeaderButton from '../common/HeaderButton.vue' import HeaderButton from '../common/HeaderButton.vue'
function handleSearch() { function handleSearch() {
window.$message?.success('施工中...') window.$message.success('施工中...')
} }
</script> </script>

View File

@ -38,7 +38,8 @@ export async function createPermissionGuard(
} }
// 权限路由已经加载仍然未找到重定向到404 // 权限路由已经加载仍然未找到重定向到404
if (to.name === '404') { // 若是从404再次跳转则跳过判断
if (to.name === '404' && to?.redirectedFrom?.name !== '404') {
next({ name: '404', replace: true }) next({ name: '404', replace: true })
return false return false
} }

View File

@ -6,5 +6,5 @@ export function showError(error: Service.RequestError) {
if (ERROR_NO_TIP_STATUS.includes(code)) if (ERROR_NO_TIP_STATUS.includes(code))
return return
window.$message?.error(error.msg) window.$message.error(error.msg)
} }

View File

@ -18,14 +18,9 @@ declare namespace Auth {
} }
/* 系统消息 */ /* 系统消息 */
declare namespace Message { declare namespace Message {
interface Tab {
key: number
name: string
badgeProps?: import('naive-ui').BadgeProps
list: List[]
}
interface List { interface List {
id: number id: number
type: 0 | 1 | 2
title: string title: string
icon: string icon: string
tagTitle?: string tagTitle?: string

View File

@ -1,25 +1,24 @@
interface Window { interface Window {
$loadingBar?: import('naive-ui').LoadingBarApi $loadingBar: import('naive-ui').LoadingBarApi
$dialog?: import('naive-ui').DialogApi $dialog: import('naive-ui').DialogApi
$message?: import('naive-ui').MessageApi $message: import('naive-ui').MessageApi
$notification?: import('naive-ui').NotificationApi $notification: import('naive-ui').NotificationApi
} }
declare const AMap: any declare const AMap: any
declare const BMap: any declare const BMap: any
interface GolbalConfig { declare module '*.vue' {
app: { import type { DefineComponent } from 'vue'
proxyUrl: Record<ServiceEnvType, ServiceEnvConfig>
} const component: DefineComponent
export default component
} }
declare namespace NaiveUI { declare namespace NaiveUI {
type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning' type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning'
} }
declare namespace UnionKey {
/* http请求头content-type类型 */
type ContentType = 'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'
}
declare namespace Storage { declare namespace Storage {
interface Session { interface Session {
demoKey: string demoKey: string

View File

@ -1,6 +0,0 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent
export default component
}

View File

@ -19,7 +19,7 @@ const model = ref({ ...initialModel })
const formRef = ref<FormInst | null>() const formRef = ref<FormInst | null>()
function sendMail(id: number) { function sendMail(id: number) {
window.$message?.success(`删除用户id:${id}`) window.$message.success(`删除用户id:${id}`)
} }
const columns: DataTableColumns = [ const columns: DataTableColumns = [
{ {
@ -137,7 +137,7 @@ async function getUserList() {
}) })
} }
function changePage(page: number, size: number) { function changePage(page: number, size: number) {
window.$message?.success(`分页器:${page},${size}`) window.$message.success(`分页器:${page},${size}`)
} }
function handleResetSearch() { function handleResetSearch() {
model.value = { ...initialModel } model.value = { ...initialModel }

View File

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
function testMsg() { function testMsg() {
window.$message?.error('Once upon a time you dressed so fine') window.$message.error('Once upon a time you dressed so fine')
} }
</script> </script>

View File

@ -35,8 +35,8 @@ const rules = {
function handleValidateClick() { function handleValidateClick() {
formRef.value?.validate((errors: any) => { formRef.value?.validate((errors: any) => {
if (!errors) if (!errors)
window.$message?.success('验证通过') window.$message.success('验证通过')
else window.$message?.error('验证不通过') else window.$message.error('验证不通过')
}) })
} }
</script> </script>