Blame view

src/views/ywbl/ywsq/components/mixin/jump.js 413 Bytes
任超 committed
1 2
export default {
  methods: {
任超 committed
3
    jump (data, type) {
任超 committed
4 5 6 7 8
      this.$emit("closeDialog");
      const { href } = this.$router.resolve(
        "/workFrame?bsmSlsq=" +
        data.bsmSlsq +
        "&bestepid=" +
任超 committed
9
        data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
任超 committed
10 11
      );
      window.open(href, "_blank");
任超 committed
12 13 14 15
    },
    queryClick () {
      this.pageData.currentPage = 1
      this.fetchData();
任超 committed
16 17 18
    }
  }
}