|
@@ -162,10 +162,10 @@ export default {
|
|
|
} else if (this.Statistics.title === '状态停留分布图数据') {
|
|
|
this.dataList = this.Statistics.statusList.yaxis[this.defaultKey2].idList[this.defaultKey]
|
|
|
} else if (this.Statistics.title === '报告统计数据') {
|
|
|
- this.defaultKey === 0 ? this.getIdList({ deliverTestReportIdList: this.Statistics.subCountList[0].idList, dailyReportIdList: this.Statistics.subCountList[1].idList, releaseReportIdList: this.Statistics.subCountList[2].idList }) : ''
|
|
|
- this.defaultKey === 1 ? this.getIdList({ deliverTestReportIdList: this.Statistics.subCountList[0].idList }) : '' // 提测
|
|
|
- this.defaultKey === 2 ? this.getIdList({ dailyReportIdList: this.Statistics.subCountList[0].idList }) : '' // 日报
|
|
|
- this.defaultKey === 3 ? this.getIdList({ releaseReportIdList: this.Statistics.subCountList[0].idList }) : '' // 准出
|
|
|
+ this.defaultKey === 0 ? this.getIdList({ deliverTestReportIdList: this.Statistics.reportData[1].subCountList[0].idList, dailyReportIdList: this.Statistics.reportData[2].subCountList[0].idList, releaseReportIdList: this.Statistics.reportData[3].subCountList[0].idList }) : ''
|
|
|
+ this.defaultKey === 1 ? this.getIdList({ deliverTestReportIdList: this.Statistics.reportData[1].subCountList[0].idList }) : '' // 提测
|
|
|
+ this.defaultKey === 2 ? this.getIdList({ dailyReportIdList: this.Statistics.reportData[2].subCountList[0].idList }) : '' // 日报
|
|
|
+ this.defaultKey === 3 ? this.getIdList({ releaseReportIdList: this.Statistics.reportData[3].subCountList[0].idList }) : '' // 准出
|
|
|
return
|
|
|
} else if (this.Statistics.title === '去除节假日的修复时长数据') {
|
|
|
this.dataList = this.Statistics[this.defaultKey].idList
|
|
@@ -207,6 +207,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async getIdList(value) {
|
|
|
+ console.log(value, '报告点击')
|
|
|
this.reportData = value
|
|
|
const data = { ...value, ...this.paging }
|
|
|
const res = await getReportList(data)
|