guoxiaohuan 5 년 전
부모
커밋
acb389c2f1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/strategy/animationBox.vue

+ 2 - 2
src/views/strategy/animationBox.vue

@@ -147,9 +147,9 @@ export default {
                 } else if (minG <= 5) {
                     this.dataY1Min = String(minS) + '0'
                 }
-                if (maxG > 5) {
+                if (maxG >= 5) {
                     this.dataY1Max = String(maxS + 1) + '0'
-                } else if (maxG <= 5) {
+                } else if (maxG < 5) {
                     this.dataY1Max = String(maxS) + '0'
                 }
             })