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