From 9dffc3ac70642f69c6759bf625c7c4a3ec07b64a Mon Sep 17 00:00:00 2001 From: art_station Date: Mon, 27 Dec 2021 14:11:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A6=E8=BE=B9=E5=88=86=E8=B4=9D=E5=80=BC?= =?UTF-8?q?=E4=BF=9D=E7=95=99=E4=B8=80=E4=BD=8D=E5=B0=8F=E6=95=B0=20?= =?UTF-8?q?=E5=86=97=E4=BD=99=E4=BB=A3=E7=A0=81=E5=88=A0=E9=99=A4=20?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E6=89=93=E5=BC=80=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sound/function/statistic/compare.vue | 502 ------------------ .../sound/function/statistic/leq-compare.vue | 102 ---- src/views/sound/road/trend/index.vue | 3 + vue.config.js | 7 + 4 files changed, 10 insertions(+), 604 deletions(-) delete mode 100644 src/views/sound/function/statistic/compare.vue delete mode 100644 src/views/sound/function/statistic/leq-compare.vue diff --git a/src/views/sound/function/statistic/compare.vue b/src/views/sound/function/statistic/compare.vue deleted file mode 100644 index 174485f..0000000 --- a/src/views/sound/function/statistic/compare.vue +++ /dev/null @@ -1,502 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/sound/function/statistic/leq-compare.vue b/src/views/sound/function/statistic/leq-compare.vue deleted file mode 100644 index e5ad4b0..0000000 --- a/src/views/sound/function/statistic/leq-compare.vue +++ /dev/null @@ -1,102 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/sound/road/trend/index.vue b/src/views/sound/road/trend/index.vue index 6c62932..aa8e7bc 100644 --- a/src/views/sound/road/trend/index.vue +++ b/src/views/sound/road/trend/index.vue @@ -124,6 +124,9 @@ }) }, initChart() { + this.trendData.yAxis[0].axisLabel = { + formatter: function (value) { return value.toFixed(1);} + }; echarts.init(document.getElementById("chartColumn")).dispose(); this.chartColumn = markRaw(echarts.init(document.getElementById('chartColumn'))) this.chartColumn.setOption({ diff --git a/vue.config.js b/vue.config.js index 3764250..6147bf0 100644 --- a/vue.config.js +++ b/vue.config.js @@ -23,5 +23,12 @@ module.exports = { } } } + }, + devServer: { + open: true, + overlay: { + warnings: true, + errors: true + } } }