From c1f067e758d1b5c972716f5e46d5a4b23526f9f7 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Wed, 20 Mar 2024 18:03:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=82=AC=E6=B5=AE=E6=A0=8F=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/navbar/index.vue | 8 +- src/pages/floatingFrame/index.vue | 519 ++++++++++++++++++++++++++++ src/router/modules/floatingFrame.js | 18 + 3 files changed, 541 insertions(+), 4 deletions(-) create mode 100644 src/pages/floatingFrame/index.vue create mode 100644 src/router/modules/floatingFrame.js diff --git a/src/layouts/navbar/index.vue b/src/layouts/navbar/index.vue index 70ddb10..9828ae4 100644 --- a/src/layouts/navbar/index.vue +++ b/src/layouts/navbar/index.vue @@ -194,10 +194,10 @@ export default { index: '/seo', title: 'SEO管理' }, - // { - // index: '/seo', - // title: '悬浮栏管理' - // } + { + index: '/floatingFrame', + title: '悬浮栏管理' + } ] } ], diff --git a/src/pages/floatingFrame/index.vue b/src/pages/floatingFrame/index.vue new file mode 100644 index 0000000..bcda4cb --- /dev/null +++ b/src/pages/floatingFrame/index.vue @@ -0,0 +1,519 @@ + + + + + \ No newline at end of file diff --git a/src/router/modules/floatingFrame.js b/src/router/modules/floatingFrame.js new file mode 100644 index 0000000..c457c39 --- /dev/null +++ b/src/router/modules/floatingFrame.js @@ -0,0 +1,18 @@ +import BasicLayout from '@/layouts/home' + +const meta = {} + +const pre = 'article-' + +export default { + path: '/floatingFrame', + meta, + component: BasicLayout, + children: [ + { + path: `/floatingFrame`, + component: () => import('@/pages/floatingFrame'), + meta: { title: '悬浮栏设置' } + }, + ] +}