From 90efcc4ad2eafe324eda716a1cfa5d3a67161f1c Mon Sep 17 00:00:00 2001 From: GGJ <357021191@qq.com> Date: Mon, 23 Dec 2024 11:30:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/systerm.ts | 14 ++ src/components/echarts/rmsboxi.vue | 4 +- src/components/echarts/shushiboxi.vue | 2 + src/components/tree/device.vue | 2 +- src/components/tree/point.vue | 6 +- .../admin/components/navBar/classic.vue | 20 +-- src/layouts/admin/components/navMenus.vue | 5 +- src/views/govern/device/control/index.vue | 4 +- .../control/tabs/components/realtrend.vue | 2 +- .../govern/device/control/tabs/trend.vue | 1 + .../govern/device/control/testItemRecords.vue | 3 +- src/views/govern/device/manage/index.vue | 2 +- .../device/planData/components/schemeTree.vue | 2 +- .../device/planData/components/transient.vue | 10 +- src/views/govern/device/planData/index.vue | 22 ++-- src/views/govern/manage/factory.vue | 16 +-- .../govern/reportCore/statistics/index.vue | 8 +- .../govern/reportCore/statisticsWx/index.vue | 12 +- .../setting/dictionary/version/index.vue | 121 ++++++++++++++++++ src/views/system/subject/form/index.vue | 7 +- 20 files changed, 209 insertions(+), 54 deletions(-) create mode 100644 src/views/setting/dictionary/version/index.vue diff --git a/src/api/systerm.ts b/src/api/systerm.ts index 0f5225a..14d2b7e 100644 --- a/src/api/systerm.ts +++ b/src/api/systerm.ts @@ -29,3 +29,17 @@ export function getTheme() { method: 'get' }) } +export function addVersion(data:any) { + return createAxios({ + url: '/cs-system-boot/appVersion/add', + method: 'post', + data + }) +} +export function getLastData(data:any) { + return createAxios({ + url: '/cs-system-boot/appVersion/getLastData', + method: 'post', + params:data + }) +} diff --git a/src/components/echarts/rmsboxi.vue b/src/components/echarts/rmsboxi.vue index fcdb502..dd2d2e8 100644 --- a/src/components/echarts/rmsboxi.vue +++ b/src/components/echarts/rmsboxi.vue @@ -1049,6 +1049,7 @@ export default { }, }, splitLine: { + show: false, lineStyle: { // 使用深浅的间隔色 color: [_this.DColor ? "#fff" : echartsColor.thread], @@ -1465,7 +1466,7 @@ export default { //minInterval: 1, type: "value", axisLine: { - show: true, + show: false, lineStyle: { color: _this.DColor ? "#fff" : echartsColor.thread, }, @@ -1479,6 +1480,7 @@ export default { }, }, splitLine: { + show: false, lineStyle: { // 使用深浅的间隔色 color: [_this.DColor ? "#fff" : echartsColor.thread], diff --git a/src/components/echarts/shushiboxi.vue b/src/components/echarts/shushiboxi.vue index 214b8b0..b834b11 100644 --- a/src/components/echarts/shushiboxi.vue +++ b/src/components/echarts/shushiboxi.vue @@ -714,6 +714,7 @@ export default { } }, splitLine: { + show: false, lineStyle: { // 使用深浅的间隔色 color: [_this.DColor ? '#fff' : echartsColor.thread], @@ -1079,6 +1080,7 @@ export default { } }, splitLine: { + show: false, lineStyle: { // 使用深浅的间隔色 color: [_this.DColor ? '#fff' : echartsColor.thread], diff --git a/src/components/tree/device.vue b/src/components/tree/device.vue index 562f700..4854225 100644 --- a/src/components/tree/device.vue +++ b/src/components/tree/device.vue @@ -1,7 +1,7 @@