From d0d6a59491bac888905c3f74b6a95b28f725386e Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Fri, 14 Oct 2022 18:13:30 +0800 Subject: [PATCH] =?UTF-8?q?feat(project):=20=E5=A2=9E=E5=8A=A0tab=E5=8F=B3?= =?UTF-8?q?=E9=94=AE=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LICENSE | 21 ++++++ mock/module/user.ts | 31 +++----- src/layouts/BasicLayout/index.vue | 6 +- src/layouts/components/tab/TabBar.vue | 102 ++++++++++++++++++++++++-- src/store/modules/tab.ts | 19 +++++ src/views/docments/vue/index.vue | 2 +- 6 files changed, 152 insertions(+), 29 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..eb3ef35 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Soybean + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/mock/module/user.ts b/mock/module/user.ts index b07e398..91b6a2b 100644 --- a/mock/module/user.ts +++ b/mock/module/user.ts @@ -157,7 +157,7 @@ const userRoutes = [ }, children: [ { - name: 'echarts', + name: 'plugin_echarts', path: '/plugin/charts/echarts', meta: { title: 'ECharts', @@ -166,7 +166,7 @@ const userRoutes = [ }, }, { - name: 'antV', + name: 'plugin_antV', path: '/plugin/charts/antV', meta: { title: 'antV', @@ -195,7 +195,7 @@ const userRoutes = [ }, children: [ { - name: 'md', + name: 'plugin_md', path: '/plugin/editor/md', meta: { title: 'MarkDown', @@ -204,7 +204,7 @@ const userRoutes = [ }, }, { - name: 'rich', + name: 'plugin_rich', path: '/plugin/editor/rich', meta: { title: '富文本', @@ -250,7 +250,7 @@ const userRoutes = [ meta: { title: '外链文档', requiresAuth: true, - icon: 'icon-park-outline:error-computer', + icon: 'icon-park-outline:file-doc', }, children: [ { @@ -259,7 +259,7 @@ const userRoutes = [ meta: { title: 'vue', requiresAuth: true, - icon: 'icon-park-outline:error', + icon: 'logos:vue', }, }, { @@ -268,18 +268,9 @@ const userRoutes = [ meta: { title: 'vite', requiresAuth: true, - icon: 'carbon:error', + icon: 'logos:vitejs', }, }, - // { - // name: 'service-error', - // path: '/docments/service-error', - // meta: { - // title: '500页', - // requiresAuth: true, - // icon: 'carbon:data-error', - // }, - // }, ], }, { @@ -332,7 +323,7 @@ const userRoutes = [ }, children: [ { - name: 'not-found', + name: 'setting_account', path: '/setting/account', meta: { title: '用户设置', @@ -341,7 +332,7 @@ const userRoutes = [ }, }, { - name: 'dictionary', + name: 'setting_dictionary', path: '/setting/dictionary', meta: { title: '字典设置', @@ -350,7 +341,7 @@ const userRoutes = [ }, }, { - name: 'menu', + name: 'setting_menu', path: '/setting/menu', meta: { title: '菜单设置', @@ -359,7 +350,7 @@ const userRoutes = [ }, }, { - name: 'system', + name: 'setting_system', path: '/setting/system', meta: { title: '系统配置', diff --git a/src/layouts/BasicLayout/index.vue b/src/layouts/BasicLayout/index.vue index e9bd40b..3d2614b 100644 --- a/src/layouts/BasicLayout/index.vue +++ b/src/layouts/BasicLayout/index.vue @@ -11,7 +11,7 @@ - + - +
{{ item.meta.title }} +
diff --git a/src/store/modules/tab.ts b/src/store/modules/tab.ts index c8ef67a..9959a26 100644 --- a/src/store/modules/tab.ts +++ b/src/store/modules/tab.ts @@ -76,6 +76,25 @@ export const useTabStore = defineStore('tab-store', { toRoot(); } }, + + closeOtherTabs(name: string) { + const index = this.getTabIndex(name); + this.tabs = this.tabs.filter((item, i) => i === index); + }, + closeLeftTabs(name: string) { + const index = this.getTabIndex(name); + this.tabs = this.tabs.filter((item, i) => i >= index); + }, + closeRightTabs(name: string) { + const index = this.getTabIndex(name); + this.tabs = this.tabs.filter((item, i) => i <= index); + }, + closeAllTabs() { + const { toRoot } = useAppRouter(false); + this.tabs.length = 0; + toRoot(); + }, + hasExistTab(name: string) { return this.tabs.some((item) => { return item.name === name; diff --git a/src/views/docments/vue/index.vue b/src/views/docments/vue/index.vue index a383167..bb5b2e3 100644 --- a/src/views/docments/vue/index.vue +++ b/src/views/docments/vue/index.vue @@ -1,5 +1,5 @@