ddef5f04 by xiaomiao

补录发起申请

1 parent e5ae082c
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-05 09:45:31
*/
import Router from '@/router'
export default {
methods: {
//点击行选中或取消复选框
handleRowClick (row, column, event) {
this.$refs.table.toggleRowSelection(row)
},
jump (data, type) {
const { href } = Router.resolve(
"/djbworkFrame?bsmSlsq=" +
data.bsmSlsq +
"&bestepid=" +
data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
);
window.open(href, "_blank");
this.$popupCacel()
},
queryClick () {
this.pageData.currentPage = 1
// this.fetchData();
}
}
}
......@@ -57,7 +57,7 @@ import {startBusinessFlow} from "@/api/djbbl.js"
import table from "@/utils/mixin/table";
import { datas, sendThis } from "../javascript/selectDjbbl.js";
import { getDjbBysearch } from "@/api/zhcx.js";
import jump from "../components/mixin/jump";
import jump from "../components/mixin/djbbljump";
export default {
name: "djbcx",
mixins: [table, jump],
......@@ -102,6 +102,7 @@ export default {
methods: {
// 初始化数据
queryClick () {
console.log("this.queryForm",this.queryForm);
this.$startLoading()
getDjbBysearch({ ...this.queryForm, ...this.pageData }).then((res) => {
this.$endLoading()
......