fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
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
<!--
 * @Author: 张嘉彬
 * @Date: 2021-10-13 15:15:36
 * @Description:
-->
<template>
  <div class="notfound">
    <img src="../../assets/img/404.png" alt="" @click="goHome">
  </div>
</template>
<script>
export default {
  name: 'notfound',
  methods: {
    goHome () {
      this.setJumpRouter(this.$store.state.userTree)
    },
    // 设置跳转路由
    setJumpRouter (data) {
      if (data && data.length) {
        let children = data[0].children
        while (children.length) {
          if (!children[0].children.length) {
            this.$router.replace(children[0].url)
          }
          children = children[0].children
        }
        this.$router.replace(data[0].url)
      } else {
        this.$store.commit('logout')
        this.$router.replace('/')
      }
    }
  }
}
</script>
<style scoped lang="scss">
.notfound {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top:100px;
  img {
    cursor: pointer;
  }
}
</style>