Blame view

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