From 1a2635af58f50c27a24cf45d5fa4d1fb46c3cfb5 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Sat, 16 Mar 2024 20:33:46 +0800 Subject: [PATCH] fix: router permission --- src/directives/copy.ts | 6 +- src/layouts/components/common/NoticeList.vue | 5 +- src/layouts/components/header/Notices.vue | 191 ++++++++++--------- src/layouts/components/header/Search.vue | 2 +- src/router/guard/permission.ts | 3 +- src/service/http/utils.ts | 2 +- src/typings/business.d.ts | 7 +- src/typings/global.d.ts | 23 ++- src/typings/shims-vue.d.ts | 6 - src/views/list/commonList/index.vue | 4 +- src/views/test/test3/test4/index.vue | 2 +- src/views/userCenter/index.vue | 4 +- 12 files changed, 126 insertions(+), 129 deletions(-) delete mode 100644 src/typings/shims-vue.d.ts diff --git a/src/directives/copy.ts b/src/directives/copy.ts index 97769ab..6200cbc 100644 --- a/src/directives/copy.ts +++ b/src/directives/copy.ts @@ -10,12 +10,12 @@ export function setupCopy(app: App) { function clipboardEnable() { 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 } 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 true @@ -25,7 +25,7 @@ export function setupCopy(app: App) { if (!clipboardEnable()) return copy(this._copyText) - window.$message?.success('复制成功') + window.$message.success('复制成功') } function updataClipboard(el: CopyHTMLElement, text: string) { diff --git a/src/layouts/components/common/NoticeList.vue b/src/layouts/components/common/NoticeList.vue index fa2183c..7da96a6 100644 --- a/src/layouts/components/common/NoticeList.vue +++ b/src/layouts/components/common/NoticeList.vue @@ -8,15 +8,12 @@ const emit = defineEmits() interface Emits { (e: 'read', val: number): void } -function handleRead(index: number) { - emit('read', index) -}