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
  • 任超's avatar
    style:业务申请 · 25daaac4
    25daaac4 Browse Directory
    任超 committed 2022-10-13 14:44:22 +0800
jump.js 413 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(
        "/workFrame?bsmSlsq=" +
        data.bsmSlsq +
        "&bestepid=" +
        data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
      );
      window.open(href, "_blank");
    },
    queryClick () {
      this.pageData.currentPage = 1
      this.fetchData();
    }
  }
}