补录发起申请
Showing
2 changed files
with
30 additions
and
1 deletions
| 1 | /* | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-05 09:45:31 | ||
| 5 | */ | ||
| 6 | import Router from '@/router' | ||
| 7 | export default { | ||
| 8 | methods: { | ||
| 9 | //点击行选中或取消复选框 | ||
| 10 | handleRowClick (row, column, event) { | ||
| 11 | this.$refs.table.toggleRowSelection(row) | ||
| 12 | }, | ||
| 13 | jump (data, type) { | ||
| 14 | const { href } = Router.resolve( | ||
| 15 | "/djbworkFrame?bsmSlsq=" + | ||
| 16 | data.bsmSlsq + | ||
| 17 | "&bestepid=" + | ||
| 18 | data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type | ||
| 19 | ); | ||
| 20 | window.open(href, "_blank"); | ||
| 21 | this.$popupCacel() | ||
| 22 | }, | ||
| 23 | queryClick () { | ||
| 24 | this.pageData.currentPage = 1 | ||
| 25 | // this.fetchData(); | ||
| 26 | } | ||
| 27 | } | ||
| 28 | } |
| ... | @@ -57,7 +57,7 @@ import {startBusinessFlow} from "@/api/djbbl.js" | ... | @@ -57,7 +57,7 @@ import {startBusinessFlow} from "@/api/djbbl.js" |
| 57 | import table from "@/utils/mixin/table"; | 57 | import table from "@/utils/mixin/table"; |
| 58 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; | 58 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; |
| 59 | import { getDjbBysearch } from "@/api/zhcx.js"; | 59 | import { getDjbBysearch } from "@/api/zhcx.js"; |
| 60 | import jump from "../components/mixin/jump"; | 60 | import jump from "../components/mixin/djbbljump"; |
| 61 | export default { | 61 | export default { |
| 62 | name: "djbcx", | 62 | name: "djbcx", |
| 63 | mixins: [table, jump], | 63 | mixins: [table, jump], |
| ... | @@ -102,6 +102,7 @@ export default { | ... | @@ -102,6 +102,7 @@ export default { |
| 102 | methods: { | 102 | methods: { |
| 103 | // 初始化数据 | 103 | // 初始化数据 |
| 104 | queryClick () { | 104 | queryClick () { |
| 105 | console.log("this.queryForm",this.queryForm); | ||
| 105 | this.$startLoading() | 106 | this.$startLoading() |
| 106 | getDjbBysearch({ ...this.queryForm, ...this.pageData }).then((res) => { | 107 | getDjbBysearch({ ...this.queryForm, ...this.pageData }).then((res) => { |
| 107 | this.$endLoading() | 108 | this.$endLoading() | ... | ... |
-
Please register or sign in to post a comment