From 82af245147f0523e09d1f1f26a800ef5c35087f7 Mon Sep 17 00:00:00 2001 From: wl <173@qq.com> Date: 星期三, 02 十一月 2022 18:22:49 +0800 Subject: [PATCH] 视频巡查 --- src/views/layout/components/Main/index.vue | 27 ++++++++++++++++++++++----- 1 files changed, 22 insertions(+), 5 deletions(-) diff --git a/src/views/layout/components/Main/index.vue b/src/views/layout/components/Main/index.vue index e7674a4..0e738f8 100644 --- a/src/views/layout/components/Main/index.vue +++ b/src/views/layout/components/Main/index.vue @@ -1,15 +1,32 @@ <template> <el-main> - <router-view></router-view> + <!-- <NavBar /> --> + <div class="content"> + <router-view></router-view> + <!-- 搴曢儴鍖哄煙 --> + <!-- <MyFooter/> --> + </div> </el-main> </template> <script> -// import NavBar from "../NavBar" +// import MyFooter from "../Footer" +import NavBar from "../NavBar" export default { name: "Main", - components:{ - // NavBar + components: { + // MyFooter, + NavBar } }; -</script> \ No newline at end of file +</script> +<style lang="scss"> +.el-main { + min-width: 1024px; + padding: 0; + .content { + padding: 11px; + height: 100%; + } +} +</style> -- Gitblit v1.8.0