Blame view

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