panhui 4 년 전
부모
커밋
4749e1b9df
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/main/vue/src/views/performance/ProgrammeScoreList.vue

+ 2 - 2
src/main/vue/src/views/performance/ProgrammeScoreList.vue

@@ -608,9 +608,9 @@ export default {
             });
             });
 
 
             this.scoreType = info ? info.value : 'D';
             this.scoreType = info ? info.value : 'D';
-            let score = row.myScore * 100;
+            let score = (row.myScore * 100).toString();
 
 
-            this.scoreValue = [Math.ceil(score / 100), Math.ceil((score % 100) / 10), score % 10];
+            this.scoreValue = [Number(score.substr(0, 2)), Number(score.substr(2, 1)), Number(score.substr(3, 1))];
         },
         },
         move(direction) {
         move(direction) {
             const end = direction + this.index;
             const end = direction + this.index;