|
@@ -250,17 +250,18 @@ export default {
|
|
|
switch (Number(tab.index)) {
|
|
|
case 0:
|
|
|
this.title = '测试日报'
|
|
|
+ this.screenForm = { ...this.screenForm, status: '', passStatus: '', isDelay: '' }
|
|
|
this.history ? this.getList() : this.gethistoryData()
|
|
|
break
|
|
|
case 1:
|
|
|
this.title = '准出报告'
|
|
|
- this.screenForm = { ...this.screenForm, status: '', passStatus: '' }
|
|
|
+ this.screenForm = { ...this.screenForm, status: '', passStatus: '', isDelay: '' }
|
|
|
this.reportStatusLists = [{ code: 0, name: '通过' }, { code: 1, name: '不通过' }]
|
|
|
this.history ? this.getList() : this.gethistoryData()
|
|
|
break
|
|
|
case 2:
|
|
|
this.title = '提测报告'
|
|
|
- this.screenForm = { ...this.screenForm, status: '', passStatus: '' }
|
|
|
+ this.screenForm = { ...this.screenForm, status: '', passStatus: '', isDelay: '' }
|
|
|
this.reportStatusList = [{ code: 1, name: '通过' }, { code: 2, name: '打回' }]
|
|
|
this.history ? this.getList() : this.gethistoryData()
|
|
|
break
|