From fb1253eb3980377f9499bae8efcde4f14e64ea46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Thu, 6 Mar 2025 08:45:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=B1=E7=8A=B6=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.local | 7 +-- src/views/screen/compenonts/map.vue | 68 +++++++++-------------------- 2 files changed, 25 insertions(+), 50 deletions(-) diff --git a/.env.local b/.env.local index 56f046d..0612f42 100644 --- a/.env.local +++ b/.env.local @@ -4,9 +4,10 @@ NODE_ENV=development VITE_DEV=true # 请求路径 -VITE_BASE_URL='http://localhost:48080' -#VITE_BASE_URL='http://188.188.4.176:48080' -#VITE_BASE_URL='http://192.168.2.63:48080' +#VITE_BASE_URL='http://localhost:48080' +#VITE_BASE_URL='http://188.188.3.232:48080' +# VITE_BASE_URL='http://188.188.5.188:48080' +VITE_BASE_URL='https://hb.jzce.com' # 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务 VITE_UPLOAD_TYPE=server diff --git a/src/views/screen/compenonts/map.vue b/src/views/screen/compenonts/map.vue index e00d9ab..a23a4a5 100644 --- a/src/views/screen/compenonts/map.vue +++ b/src/views/screen/compenonts/map.vue @@ -145,6 +145,7 @@ const handlerResize = () => { const initMap = () => { const chartInstance = unref(mapChartRef).getChartRef() + const BARWIDTH = 10 echarts.util.each(mapPoint, (dataItem, id) => { //获取对应城市的经纬度 const geoCoord = dataItem.value.reverse() @@ -196,8 +197,8 @@ const initMap = () => { }) mapOption.value.grid.push({ id: idx, - width: 20, - height: 80, + width: 30, + height: 60, left: coord[0] - 10, top: coord[1] - 65, zLevel: 0 @@ -210,7 +211,7 @@ const initMap = () => { xAxisIndex: idx, yAxisIndex: idx, zLevel: 3, - barWidth: 6, + barWidth: BARWIDTH, itemStyle: { borderRadius: [3, 3, 0, 0] }, @@ -242,6 +243,7 @@ const initMap = () => { } ] }) + // 背景柱状图 mapOption.value.series.push({ name: `${dataItem.name}2`, @@ -249,23 +251,25 @@ const initMap = () => { coordinateSystem: 'cartesian2d', xAxisIndex: idx, yAxisIndex: idx, - zLevel: 2, - barWidth: 6, - barGap: '-100%', - itemStyle: { - borderRadius: [3, 3, 0, 0] + zLevel: 3, + barWidth: BARWIDTH, + label: { + show: false, + position: 'top', + color: '#fff' }, + barGap: '-100%', data: [ { value: 100, itemStyle: { - color: 'rgba(251, 233, 71, 0.05)' + color: 'rgba(251, 233, 71, .2)' } }, { value: 100, itemStyle: { - color: 'rgba(88, 215, 100, 0.05)' + color: 'rgba(88, 215, 100, .2)' } } ] @@ -277,7 +281,7 @@ const initMap = () => { coordinateSystem: 'cartesian2d', xAxisIndex: idx, yAxisIndex: idx, - symbolSize: [6, 2], + symbolSize: [BARWIDTH, 2], symbolOffset: [0, 0], symbolPosition: 'end', symbol: 'circle', @@ -297,35 +301,7 @@ const initMap = () => { } ] }) - mapOption.value.series.push({ - name: `${dataItem.name}2`, - type: 'bar', - coordinateSystem: 'cartesian2d', - xAxisIndex: idx, - yAxisIndex: idx, - zLevel: 3, - barWidth: 6, - label: { - show: false, - position: 'top', - color: '#fff' - }, - barGap: '-100%', - data: [ - { - value: 100, - itemStyle: { - color: 'rgba(251, 233, 71, .2)' - } - }, - { - value: 100, - itemStyle: { - color: 'rgba(88, 215, 100, .2)' - } - } - ] - }) + // 背景顶部圆形装饰 mapOption.value.series.push({ name: `${dataItem.name}3`, type: 'pictorialBar', @@ -336,9 +312,9 @@ const initMap = () => { symbol: 'circle', zLevel: 3, label: { - show: false, + show: false }, - symbolSize: [6, 3], + symbolSize: [BARWIDTH, 3], symbolOffset: [0, -1], barGap: '-100%', data: [ @@ -356,6 +332,7 @@ const initMap = () => { } ] }) + // 背景顶部底部装饰 mapOption.value.series.push({ name: `${dataItem.name}3`, type: 'pictorialBar', @@ -366,10 +343,10 @@ const initMap = () => { symbolPosition: 'end', symbol: 'circle', label: { - show: false, + show: false }, barGap: '-100%', - symbolSize: [6, 3], + symbolSize: [BARWIDTH, 3], symbolOffset: [0, -1], data: [ { @@ -386,7 +363,6 @@ const initMap = () => { } ] }) - }) } @@ -501,6 +477,4 @@ onUnmounted(() => { } } } - -