浏览代码

feat: Added footer to admin pages

Owen Diffey 3 年之前
父节点
当前提交
cdf500a907
共有 1 个文件被更改,包括 20 次插入9 次删除
  1. 20 9
      frontend/src/pages/Admin/index.vue

+ 20 - 9
frontend/src/pages/Admin/index.vue

@@ -99,15 +99,19 @@
 			</ul>
 		</div>
 
-		<test v-if="currentTab == 'test'" />
-		<songs v-if="currentTab == 'songs'" />
-		<stations v-if="currentTab == 'stations'" />
-		<playlists v-if="currentTab == 'playlists'" />
-		<reports v-if="currentTab == 'reports'" />
-		<news v-if="currentTab == 'news'" />
-		<users v-if="currentTab == 'users'" />
-		<statistics v-if="currentTab == 'statistics'" />
-		<punishments v-if="currentTab == 'punishments'" />
+		<div class="admin-container">
+			<test v-if="currentTab == 'test'" />
+			<songs v-if="currentTab == 'songs'" />
+			<stations v-if="currentTab == 'stations'" />
+			<playlists v-if="currentTab == 'playlists'" />
+			<reports v-if="currentTab == 'reports'" />
+			<news v-if="currentTab == 'news'" />
+			<users v-if="currentTab == 'users'" />
+			<statistics v-if="currentTab == 'statistics'" />
+			<punishments v-if="currentTab == 'punishments'" />
+		</div>
+
+		<main-footer />
 	</div>
 </template>
 
@@ -116,10 +120,12 @@ import { mapGetters } from "vuex";
 import { defineAsyncComponent } from "vue";
 
 import MainHeader from "@/components/layout/MainHeader.vue";
+import MainFooter from "@/components/layout/MainFooter.vue";
 
 export default {
 	components: {
 		MainHeader,
+		MainFooter,
 		Test: defineAsyncComponent(() => import("./tabs/Test.vue")),
 		Songs: defineAsyncComponent(() => import("./tabs/Songs.vue")),
 		Stations: defineAsyncComponent(() => import("./tabs/Stations.vue")),
@@ -259,6 +265,11 @@ export default {
 
 .main-container {
 	height: auto;
+
+	.admin-container {
+		flex: 1 0 auto;
+		margin-bottom: 20px;
+	}
 }
 
 .tabs {