Browse Source

修改积分

aaa 3 years ago
parent
commit
a68d371c8b
1 changed files with 2 additions and 3 deletions
  1. 2 3
      src/views/home/person/exam-history.vue

+ 2 - 3
src/views/home/person/exam-history.vue

@@ -32,13 +32,13 @@
               <div class="exam-history-item-left-schedule">
                 <van-progress
                   :percentage="
-                    formatePercentageFun(item.points, examFullPoints)
+                    formatePercentageFun(item.points, item.totalPoints)
                   "
                   :show-pivot="false"
                 />
               </div>
               <div class="exam-history-item-left-schedule-text">
-                {{ item.points || 0 }} 分 / 满分 {{ examFullPoints }} 分
+                {{ item.points || 0 }} 分 / 满分 {{ item.totalPoints }} 分
               </div>
             </div>
           </div>
@@ -62,7 +62,6 @@ export default {
       userExamPonits: 0,
       generalExamPoints: 0,
       specialExamPoints: 0,
-      examFullPoints: 100,
       userManualType: {
         ONE: 1,
         TWO: 2,