RuoYi
2021-06-22 1ed60c79c0a76228b5034f5e4c8a905b27abef35
ruoyi-ui/src/components/Breadcrumb/index.vue
@@ -10,8 +10,6 @@
</template>
<script>
import pathToRegexp from 'path-to-regexp'
export default {
  data() {
    return {
@@ -49,18 +47,13 @@
      }
      return name.trim() === '首页'
    },
    pathCompile(path) {
      const { params } = this.$route
      var toPath = pathToRegexp.compile(path)
      return toPath(params)
    },
    handleLink(item) {
      const { redirect, path } = item
      if (redirect) {
        this.$router.push(redirect)
        return
      }
      this.$router.push(this.pathCompile(path))
      this.$router.push(path)
    }
  }
}