WXL (wul)
21 小时以前 0c7cc21d8a51e164dd2fe4ce73ab566b3a9081a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
  <div id="app">
    <router-view />
    <theme-picker />
    <!-- <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>
 
<script>
import ThemePicker from "@/components/ThemePicker";
 
export default {
  name: "App",
  components: {
    ThemePicker,
    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 {
      title:
        this.$store.state.settings.dynamicTitle &&
        this.$store.state.settings.title,
      titleTemplate: (title) => {
        return title
          ? `${title} - ${process.env.VUE_APP_TITLE}`
          : process.env.VUE_APP_TITLE;
      },
    };
  },
};
</script>
<style scoped>
#app {
  overflow-y: scroll;
  height: 100vh;
  background: #f8fafd;
  /* font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体"; */
  font-family: "Hiragino Sans GB";
}
#app .theme-picker {
  display: none;
}
</style>