Showing
1 changed file
with
4 additions
and
3 deletions
... | ... | @@ -88,12 +88,12 @@ export default { |
88 | 88 | { |
89 | 89 | checked: false, |
90 | 90 | name: '成功', |
91 | - type: 'success' | |
91 | + type: 'SUCCESSFUL' | |
92 | 92 | }, |
93 | 93 | { |
94 | 94 | checked: false, |
95 | 95 | name: '失败', |
96 | - type: 'fail' | |
96 | + type: 'FAILED' | |
97 | 97 | } |
98 | 98 | ], |
99 | 99 | downOption: { |
... | ... | @@ -181,9 +181,10 @@ export default { |
181 | 181 | }, |
182 | 182 | confirmFilter() { |
183 | 183 | const issueStatus = this.issueStatus.find(item => item.checked); |
184 | + console.log('--------',this.tbDeviceId) | |
184 | 185 | this.loadData(1, { |
185 | 186 | status: issueStatus.type ? issueStatus.type : undefined, |
186 | - deviceId: this.deviceId | |
187 | + tbDeviceId: this.tbDeviceId | |
187 | 188 | }); |
188 | 189 | this.show = false; |
189 | 190 | }, | ... | ... |