From 6c7e308453d1955506db6f24dd9b1e65caadfdaf Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 11 六月 2024 18:04:59 +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