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 @@