diff --git a/frontend/src/components/stock.vue b/frontend/src/components/stock.vue index 57f3748..d56cb66 100644 --- a/frontend/src/components/stock.vue +++ b/frontend/src/components/stock.vue @@ -762,8 +762,8 @@ function showFsChart(code, name) { show: false }, name: "股价", - min: min - 1, - max: max + 1, + min: (min - min*0.01).toFixed(2), + max: (max + max*0.01).toFixed(2), minInterval: 0.01, type: 'value' }, @@ -1947,7 +1947,7 @@ function delStockGroup(code,name,groupId){ - +