diff --git a/src/router/routes/modules/creativeGenerationWorkshop.ts b/src/router/routes/modules/creativeGenerationWorkshop.ts index da6447f..6c60759 100644 --- a/src/router/routes/modules/creativeGenerationWorkshop.ts +++ b/src/router/routes/modules/creativeGenerationWorkshop.ts @@ -119,6 +119,7 @@ const COMPONENTS: AppRouteRecordRaw[] = [ requiresAuth: false, requireLogin: false, hideFooter: true, + hideSidebar: true, roles: ['*'], }, component: () => import('@/views/creative-generation-workshop/explore/list/index.vue'), @@ -131,6 +132,7 @@ const COMPONENTS: AppRouteRecordRaw[] = [ requiresAuth: false, requireLogin: false, hideFooter: true, + hideSidebar: true, roles: ['*'], }, component: () => import('@/views/creative-generation-workshop/explore/detail/index.vue'), diff --git a/src/views/creative-generation-workshop/explore/detail/style.scss b/src/views/creative-generation-workshop/explore/detail/style.scss index c1fa1fe..df1a2e2 100644 --- a/src/views/creative-generation-workshop/explore/detail/style.scss +++ b/src/views/creative-generation-workshop/explore/detail/style.scss @@ -1,8 +1,17 @@ .explore-page { + &::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #fff; + z-index: -1; + } position: relative; - // padding-top: $navbar-height; min-width: 1200px; - height: 100vh; + min-height: 100vh; background: #fff; display: flex; flex-direction: column;