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'
                 }
             })