|
@@ -1209,6 +1209,7 @@ export default {
|
|
|
},
|
|
|
exporting: false, // 添加导出状态控制
|
|
|
radarChartInstance: null,
|
|
|
+ interview_progress: [],
|
|
|
interviewRecords: [], // 存储问答记录
|
|
|
followUpQuestions: [], // 存储追问题
|
|
|
noTableHeight: 0,
|
|
@@ -1553,6 +1554,7 @@ export default {
|
|
|
// 添加获取问答记录的逻辑
|
|
|
if (data.data?.interview_progress) {
|
|
|
this.interviewRecords = this.processInterviewRecords(data.data.interview_progress)
|
|
|
+ this.interview_progress = data.data.interview_progress
|
|
|
console.log(this.interviewRecords)
|
|
|
}
|
|
|
|
|
@@ -1578,7 +1580,7 @@ export default {
|
|
|
const applicationId = this.$route.query.id || this.$route.params.id
|
|
|
const baseUrl = window.location.origin;
|
|
|
// 过滤出question_form不等于0和5的数据
|
|
|
- const filteredRecords = this.interviewRecords.filter(record =>
|
|
|
+ const filteredRecords = this.interview_progress.filter(record =>
|
|
|
record.question_form !== 0 && record.question_form !== 5
|
|
|
)
|
|
|
|