From 0c7cc21d8a51e164dd2fe4ce73ab566b3a9081a9 Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期四, 26 三月 2026 10:25:05 +0800
Subject: [PATCH] 测试完成

---
 src/App.vue |   39 +++++++++++++++++++++++++++++++++++----
 1 files changed, 35 insertions(+), 4 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index a91e2a5..83f295c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,7 +2,14 @@
   <div id="app">
     <router-view />
     <theme-picker />
-    <Assistant />
+    <!-- <Assistant v-if="routertf" /> -->
+    <Assistant
+      v-if="Assvite"
+      :initial-position="{ x: 50, y: 200 }"
+      :auto-hide="false"
+      :hide-delay="3000"
+      primary-color="#1890ff"
+    />
   </div>
 </template>
 
@@ -13,7 +20,29 @@
   name: "App",
   components: {
     ThemePicker,
-    Assistant: () => import("./components/Assistant"), //寮傛缁勪欢鍔犺浇鏂瑰紡
+    Assistant: () => import("./components/Assistant"),
+  },
+  data() {
+    return {
+      Assvite: true,
+    };
+  },
+  created() {
+    // 鍒濆鍖栧垽鏂�
+    this.checkAndUpdateAssvite();
+  },
+  watch: {
+    // 鐩戝惉璺敱鍙樺寲
+    '$route'(to, from) {
+      this.checkAndUpdateAssvite();
+    }
+  },
+  methods: {
+    checkAndUpdateAssvite() {
+      const isLoginPage = window.location.pathname.includes("/login");
+      this.Assvite = !isLoginPage;
+      console.log('褰撳墠璺敱:', this.$route.path, '鏄惁鐧诲綍椤�:', isLoginPage, '鏄剧ず鎮诞鐞�:', this.Assvite);
+    }
   },
   metaInfo() {
     return {
@@ -31,9 +60,11 @@
 </script>
 <style scoped>
 #app {
-  overflow: scroll;
+  overflow-y: scroll;
   height: 100vh;
-  background: #F8FAFD;
+  background: #f8fafd;
+  /* font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "瀹嬩綋"; */
+  font-family: "Hiragino Sans GB";
 }
 #app .theme-picker {
   display: none;

--
Gitblit v1.9.3