|
@@ -245,15 +245,16 @@ export default {
|
|
|
{ params }
|
|
|
)
|
|
|
.then(res => {
|
|
|
- console.log("--222--" + JSON.stringify(res.data));
|
|
|
if (res.data) {
|
|
|
let httpResultData = [];
|
|
|
- res.data.forEach((item, index) => {
|
|
|
- this.getExamQuestionsListFun(
|
|
|
- item,
|
|
|
- httpResultData,
|
|
|
- index === res.data.length - 1
|
|
|
- );
|
|
|
+ res.data.forEach(element => {
|
|
|
+ httpResultData.push(this.setPersonDataFun(element));
|
|
|
+ // 临时解决多个异步请求进行的问题
|
|
|
+ this.examQuestionList = httpResultData;
|
|
|
+ this.handleExamQuestionItemFun(this.examQuestionList[0], 0); // 设置第一题开始
|
|
|
+ let curTime = new Date();
|
|
|
+ this.answerTime.startTime = curTime; // 赋值开始时间
|
|
|
+ this.isInited = true;
|
|
|
});
|
|
|
}
|
|
|
})
|
|
@@ -261,31 +262,7 @@ export default {
|
|
|
this.$store.commit("toggleLoading", false);
|
|
|
});
|
|
|
},
|
|
|
- // 查询:试题信息
|
|
|
- async getExamQuestionsListFun(questionId, httpResultData, isLast) {
|
|
|
- this.$_http
|
|
|
- .get(
|
|
|
- this.$pathParams(this.$_API.GET_JTXT_GET_EXAMS_ONE_QUESTIONS_LIST, {
|
|
|
- questionId: questionId
|
|
|
- })
|
|
|
- )
|
|
|
- .then(res => {
|
|
|
- let resData = { ...res.data };
|
|
|
- httpResultData.push(this.setPersonDataFun(resData));
|
|
|
- if (isLast) {
|
|
|
- // 临时解决多个异步请求进行的问题
|
|
|
- this.examQuestionList = httpResultData;
|
|
|
- this.handleExamQuestionItemFun(this.examQuestionList[0], 0); // 设置第一题开始
|
|
|
- let curTime = new Date();
|
|
|
- this.answerTime.startTime = curTime; // 赋值开始时间
|
|
|
- this.isInited = true;
|
|
|
- this.$store.commit("toggleLoading", false);
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.$store.commit("toggleLoading", false);
|
|
|
- });
|
|
|
- },
|
|
|
+
|
|
|
// 方法:过滤试题的类型,添加用户作答的字段
|
|
|
setPersonDataFun(httpResultDataItme) {
|
|
|
let results = this.formatQuestionType(
|