Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcdj-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcdj-web
  • ..
  • mixin
  • jump.js
  • jiaozeping@pashanhoo.com's avatar
    代码修改 · 73dc09e3
    73dc09e3 Browse Directory
    jiaozeping@pashanhoo.com committed 2022-12-09 15:21:06 +0800
jump.js 418 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export default {
  methods: {
    jump (data, type) {
      this.$emit("closeDialog");
      const { href } = this.$router.resolve(
        "/workFramecs?bsmSlsq=" +
        data.bsmSlsq +
        "&bestepid=" +
        data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
      );
      window.open(href, "_blank");
    },
    queryClick () {
      this.pageData.currentPage = 1
      // this.fetchData();
    }
  }
}