From fe91cc994c78b15bbc4e974e4d7c0eb1177a7a10 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 29 五月 2024 14:44:21 +0800
Subject: [PATCH] 页面整合

---
 src/App.vue |   25 ++++++++++++++++++++++++-
 1 files changed, 24 insertions(+), 1 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index ec9032c..5aff9e3 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,7 @@
 <template>
-  <div id="app">
+  <div
+    id="app"
+  >
     <router-view />
   </div>
 </template>
@@ -9,3 +11,24 @@
   name: 'App'
 }
 </script>
+
+<style lang="scss">
+#app {
+  width: 100%;
+  height: 100%;
+  // 鍏抽棴婊氬姩
+  overflow-x: hidden;
+  background-image:url('./assets/img/loginBackground.jpg');
+  background-size: cover;
+}
+// 淇敼婊氬姩鏉℃牱寮�
+#app::-webkit-scrollbar {
+  width: 4px;
+}
+#app::-webkit-scrollbar-track {
+  background-color: #ccc;
+}
+#app::-webkit-scrollbar-thumb {
+  background-color: #666;
+}
+</style>

--
Gitblit v1.8.0