jump.js 901 Bytes
/*
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-10-12 17:26:24
 */
import Router from '@/router'
export default {
  methods: {
    /**
     * @description: 点击行选中或取消复选框
     * @param {*} row
     * @param {*} column
     * @param {*} event
     * @author: renchao
     */
    handleRowClick (row, column, event) {
      this.$refs.table.toggleRowSelection(row)
    },
    /**
     * @description: jump
     * @author: renchao
     */
    jump (data, type) {
      const { href } = Router.resolve(
        "/workFrame?bsmSlsq=" + data.bsmSlsq +
        "&bestepid=" + data.bestepid + "&djywbm=" + data.djywbm + "&zbhj=受理"
      )
      window.open(href, "_blank")
      this.$popupCacel()
    },
    /**
     * @description: queryClick
     * @author: renchao
     */
    queryClick () {
      this.pageData.currentPage = 1
      // this.fetchData();
    }
  }
}