@@ -263,10 +263,10 @@
this.$post(this.api.queryItem,n.levelThree)
.then((res) => {
n.levelFour = res.subject.find(e => e.id == n.levelFour).itemDescription
- console.log(11,n)
}).catch((err) => {})
}
})
+ let ids = []
setTimeout(() => {
score.map(n => {
let item = answerList.find(e => e.tradingJudgmentPointsId == n.tradingJudgmentPointsId)
@@ -274,9 +274,20 @@
judgmentPointsName: item.judgmentPointsName,
userAnswers: n.userAnswers,
referenceAnswer: item.levelFour,
- score: n.score
+ score: n.userScore,
+ type: n.type
})
+ n.type == 1 && ids.push(`ids=${n.userAnswers}`)
})
+ this.$get(`${this.api.getItemContentByIds}?${ids.join('&')}`).then((res) => {
+ let list = res.data
+ sjData.map(n => {
+ if(n.type == 1){
+ let item = list.find(e => e.id == n.userAnswers)
+ if(item) n.userAnswers = item.itemDescription
+ }
+ })
+ }).catch((err) => {})
},500)
this.sjData = sjData
diff --git a/src/utils/api.js b/src/utils/api.js
index 1ca39f2..de94ec9 100644
--- a/src/utils/api.js
+++ b/src/utils/api.js
@@ -161,5 +161,6 @@ export default {
userRecord: `${host}/evaluation/tms/classTech/userRecord`, //查询班级实验列表信息
getReport: `${host}/evaluation/Achievement/getReport`,
uploadSignature:`${host}/evaluation/evaluation/signature/uploadSignature`,
+ getItemContentByIds:`${host}/kdSys/getItemContentByIds`,
queryItem: `http://116.63.168.79/kdSys/queryItem`,
}
\ No newline at end of file