Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
1 changed file
with
28 additions
and
0 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 | } |
-
Please register or sign in to post a comment