djbbljump.js 986 Bytes
/*
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-09-21 14:59:40
 */
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
     * @param {*} data
     * @param {*} type
     * @author: renchao
     */
    jump (data, type) {
      const { href } = Router.resolve(
        "/djbworkFrame?bsmSlsq=" + data.bsmSlsq +
        "&bestepid=" + data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
      );
      window.open(href, "_blank");
      this.$popupCacel()
    },
    /**
     * @description: queryClick
     * @author: renchao
     */
    queryClick () {
      this.pageData.currentPage = 1
      // this.fetchData();
    }
  }
}