案件查询 接口更改
Showing
1 changed file
with
16 additions
and
2 deletions
... | @@ -5,7 +5,7 @@ var self = new Vue({ | ... | @@ -5,7 +5,7 @@ var self = new Vue({ |
5 | search:'', | 5 | search:'', |
6 | projectId:null, | 6 | projectId:null, |
7 | userName: '案件查处', | 7 | userName: '案件查处', |
8 | flowid: 't1001_8a8610de737b99270173937337e00133', | 8 | flowid:[], |
9 | pageNum:1, | 9 | pageNum:1, |
10 | pageSize:10, | 10 | pageSize:10, |
11 | total:0, | 11 | total:0, |
... | @@ -96,7 +96,7 @@ var self = new Vue({ | ... | @@ -96,7 +96,7 @@ var self = new Vue({ |
96 | params: { | 96 | params: { |
97 | pageIndex:this.pageNum, | 97 | pageIndex:this.pageNum, |
98 | pageSize:this.pageSize, | 98 | pageSize:this.pageSize, |
99 | flowId: this.flowid, | 99 | flowIds: this.flowid, |
100 | userName: this.userName, | 100 | userName: this.userName, |
101 | } | 101 | } |
102 | }).then(res => { | 102 | }).then(res => { |
... | @@ -150,7 +150,21 @@ var self = new Vue({ | ... | @@ -150,7 +150,21 @@ var self = new Vue({ |
150 | }, | 150 | }, |
151 | handleCurrentChange(){}, | 151 | handleCurrentChange(){}, |
152 | click(val){ | 152 | click(val){ |
153 | if(val==3){ | ||
154 | this.flowid = [] | ||
155 | this.flowid.push('t1001_8a8610de737b99270173937337e00133') | ||
156 | }else if (val==5){ | ||
157 | this.flowid = [] | ||
158 | this.flowid.push('t1001_8a8610d86125b9a801612600a4c60003') | ||
159 | }else if (val =='2'){ | ||
160 | this.flowid = [] | ||
161 | this.flowid.push('t1001_402885c973b703220173b73ed4e6004d') | ||
162 | }else if (val=='1'){ | ||
163 | this.flowid=[] | ||
164 | this.flowid = ['t1001_8a8610de737b99270173937337e00133','t1001_8a8610d86125b9a801612600a4c60003','t1001_402885c973b703220173b73ed4e6004d'] | ||
165 | } | ||
153 | this.isActive = val | 166 | this.isActive = val |
167 | console.log(this.flowid) | ||
154 | }, | 168 | }, |
155 | openHandleJumpUrl (flowId, itemTypeId, _stats = 'create') { | 169 | openHandleJumpUrl (flowId, itemTypeId, _stats = 'create') { |
156 | // debugger | 170 | // debugger | ... | ... |
-
Please register or sign in to post a comment