@@ -110,4 +110,13 @@ const toDocument = () => {
opacity: 0;
transform: translateY(10%);
}
+
+.block {
+ display: flex;
+ height: 100%;
+ padding: 0 10px;
+ cursor: pointer;
+ align-items: center;
+ transition: background var(--transition-time-02);
+}
From fe443f559793aeb981e878b9880cb3cee48ecf1a 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: Wed, 19 Mar 2025 14:53:57 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=9B=BE=E8=A1=A8?=
=?UTF-8?q?=E9=85=8D=E7=BD=AE=EF=BC=8C=E8=B0=83=E6=95=B4=E6=95=B0=E6=8D=AE?=
=?UTF-8?q?=E5=B1=95=E7=A4=BA=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/Home/Index.vue | 215 ++++++++++++++++++++-------------------
1 file changed, 110 insertions(+), 105 deletions(-)
diff --git a/src/views/Home/Index.vue b/src/views/Home/Index.vue
index cbb9e0f..32c0ae5 100644
--- a/src/views/Home/Index.vue
+++ b/src/views/Home/Index.vue
@@ -303,22 +303,28 @@ const barOptionsData = ref({
},
{
name: '执法记录',
- type: 'bar',
+ type: 'pictorialBar',
+ symbol: 'rect',
+ symbolPosition: 'end',
+ symbolSize: [20, 5],
+ symbolOffset: [-13, -1],
barWidth: 20,
- stack: '执法记录',
- barGap: '30%',
+ barGap: '-100% ',
itemStyle: {
color: 'rgba(64, 158, 255, 1)'
},
tooltip: {
show: false
},
- data: [1, 1, 1, 1, 1]
+ data: []
},
{
name: '整改次数',
- type: 'bar',
- stack: '整改次数',
+ type: 'pictorialBar',
+ symbol: 'rect',
+ symbolPosition: 'end',
+ symbolSize: [20,5],
+ symbolOffset: [13, -1],
barWidth: 20,
itemStyle: {
color: 'rgba(103, 194, 58, 1)'
@@ -326,103 +332,103 @@ const barOptionsData = ref({
tooltip: {
show: false
},
- data: [1, 1, 1, 1, 1]
+ data: []
}
]
})
const lineOptionsData = ref({
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- grid: {
- top: 42,
- left: 16,
- right: 16,
- bottom: 16,
- containLabel: true
- },
- legend: {
- show: true,
- top: 16,
- left: 'center',
- textStyle: {
- color: '#333'
- }
- },
- xAxis: {
- type: 'category',
- data:[],
- axisTick: {
- show: false
- },
- axisLine: {
- show: false
- },
- splitLine: {
- show: true,
- lineStyle: {
- type: 'dashed',
- color: '#E5E7EB'
- }
- },
- axisLabel: {
- show: false,
- color: '#333'
- }
- },
- yAxis: {
- type: 'value',
- axisLine: {
- show: false
- },
- max: (v) => {
- return Math.floor(v.max * 1.2 + 1)
- },
- axisTick: {
- show: false
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: '#E5E7EB'
- }
- }
- },
- series: [
- {
- name: '任务数',
- data: [13253, 34235, 26321, 12340, 24643],
- type: 'line',
- smooth: true,
- itemStyle: {
- color: 'rgba(64, 158, 255, 1)'
- },
- lineStyle: {
- color: 'rgba(64, 158, 255, 1)'
- },
- areaStyle: {
- color: 'rgba(64, 158, 255, .3)'
- }
- },
- {
- name: '执法数',
- data: [15678, 28943, 31452, 19876, 22345],
- type: 'line',
- smooth: true,
- itemStyle: {
- color: 'rgba(103, 194, 58, 1)'
- },
- lineStyle: {
- color: 'rgba(103, 194, 58, 1)'
- },
- areaStyle: {
- color: 'rgba(103, 194, 58, .3)'
- }
- }
- ]
+ tooltip: {
+ trigger: 'axis',
+ axisPointer: {
+ type: 'shadow'
+ }
+ },
+ grid: {
+ top: 42,
+ left: 16,
+ right: 16,
+ bottom: 16,
+ containLabel: true
+ },
+ legend: {
+ show: true,
+ top: 16,
+ left: 'center',
+ textStyle: {
+ color: '#333'
+ }
+ },
+ xAxis: {
+ type: 'category',
+ data: [],
+ axisTick: {
+ show: false
+ },
+ axisLine: {
+ show: false
+ },
+ splitLine: {
+ show: true,
+ lineStyle: {
+ type: 'dashed',
+ color: '#E5E7EB'
+ }
+ },
+ axisLabel: {
+ show: false,
+ color: '#333'
+ }
+ },
+ yAxis: {
+ type: 'value',
+ axisLine: {
+ show: false
+ },
+ max: (v) => {
+ return Math.floor(v.max * 1.2 + 1)
+ },
+ axisTick: {
+ show: false
+ },
+ splitLine: {
+ lineStyle: {
+ type: 'dashed',
+ color: '#E5E7EB'
+ }
+ }
+ },
+ series: [
+ {
+ name: '任务数',
+ data: [13253, 34235, 26321, 12340, 24643],
+ type: 'line',
+ smooth: true,
+ itemStyle: {
+ color: 'rgba(64, 158, 255, 1)'
+ },
+ lineStyle: {
+ color: 'rgba(64, 158, 255, 1)'
+ },
+ areaStyle: {
+ color: 'rgba(64, 158, 255, .3)'
+ }
+ },
+ {
+ name: '执法数',
+ data: [15678, 28943, 31452, 19876, 22345],
+ type: 'line',
+ smooth: true,
+ itemStyle: {
+ color: 'rgba(103, 194, 58, 1)'
+ },
+ lineStyle: {
+ color: 'rgba(103, 194, 58, 1)'
+ },
+ areaStyle: {
+ color: 'rgba(103, 194, 58, .3)'
+ }
+ }
+ ]
})
const queryParams = reactive({
@@ -497,9 +503,9 @@ const getS3Data = async () => {
data1.push({ name: item.month, value: item.taskCount })
data2.push({ name: item.month, value: item.inspectionCount })
})
- lineOptionsData.value.series[0].data = data1
- lineOptionsData.value.series[1].data = data2
- lineOptionsData.value.xAxis.data = res.map((i) => i.month)
+ lineOptionsData.value.series[0].data = data1
+ lineOptionsData.value.series[1].data = data2
+ lineOptionsData.value.xAxis.data = res.map((i) => i.month)
}
// 执法整改
@@ -518,12 +524,11 @@ const getS2Data = async () => {
}
})
const axis = res.map((i) => i.realName)
- const top = (res[0].inspectionCount % 10) / 10
barOptionsData.value.series[0].data = data1
barOptionsData.value.series[1].data = data2
barOptionsData.value.xAxis.data = axis
- barOptionsData.value.series[2].data = new Array(axis.length).fill(top || 0.1)
- barOptionsData.value.series[3].data = new Array(axis.length).fill(top || 0.1)
+ barOptionsData.value.series[2].data = data1
+ barOptionsData.value.series[3].data = data2
}
// 获取最新任务