|
@@ -234,11 +234,12 @@ export default {
|
|
|
cachePaperInfo[k] = info;
|
|
|
});
|
|
|
});
|
|
|
+ // console.log(cachePaperInfo);
|
|
|
return cachePaperInfo;
|
|
|
},
|
|
|
assignCachePaperData(paperData, cacheData) {
|
|
|
return paperData.map((detail, dIndex) => {
|
|
|
- detail.questions.map((question) => {
|
|
|
+ detail.questions = detail.questions.map((question) => {
|
|
|
return this.mergeObjData(
|
|
|
question,
|
|
|
cacheData[`${dIndex + 1}_${question.number}`] || {}
|