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: '悬浮栏设置' } + }, + ] +}