Blame view

src/views/ywbl/ywsq/components/mixin/jump.js 650 Bytes
1 2 3
/*
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-05 09:45:31
5
 */
6
import Router from '@/router'
任超 committed
7 8
export default {
  methods: {
任超 committed
9 10
    //点击行选中或取消复选框
    handleRowClick (row, column, event) {
11
      this.$refs.table.toggleRowSelection(row)
任超 committed
12
    },
任超 committed
13
    jump (data, type) {
14
      const { href } = Router.resolve(
任超 committed
15
        "/workFrame?bsmSlsq=" +
任超 committed
16 17
        data.bsmSlsq +
        "&bestepid=" +
任超 committed
18
        data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
任超 committed
19 20
      );
      window.open(href, "_blank");
21
      this.$popupCacel()
任超 committed
22 23 24
    },
    queryClick () {
      this.pageData.currentPage = 1
25
      // this.fetchData();
任超 committed
26 27 28
    }
  }
}