Browse Source

后台api适配

Michael Wang 5 years ago
parent
commit
d4ce734089
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/features/OnlinePractice/OnlinePracticeRecordDetail.vue

+ 2 - 1
src/features/OnlinePractice/OnlinePracticeRecordDetail.vue

@@ -119,7 +119,8 @@ export default {
     try {
       const res = await this.$http.get(
         "/api/ecs_oe_admin/practice/getPracticeDetailInfo?examRecordDataId=" +
-          this.$route.query.examRecordDataId
+          this.$route.query.examRecordDataId +
+          (this.disableGoBack ? "&fromCache=1" : "")
       );
       this.examRecordResult = res.data || [];
     } catch (error) {