1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135 |
- <template>
- <div class="page-container">
- <el-row :gutter="16" class="summary">
- <!-- 原有的统计卡片部分保持不变 -->
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="device.total || 0"
- icon="fa-solid:project-diagram"
- icon-bg-color="text-blue-500"
- icon-color="bg-blue-100"
- title="设备数"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="maintain.total || 0"
- icon="fa-solid:list"
- icon-bg-color="text-pink-500"
- icon-color="bg-blue-100"
- title="维修工单"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="fill.unfilledCount || 0"
- icon="fa-solid:times-circle"
- icon-bg-color="text-purple-500"
- icon-color="bg-purple-100"
- title="运行未填写"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="fill.filledCount || 0"
- icon="fa-solid:award"
- icon-bg-color="text-purple-500"
- icon-color="bg-purple-100"
- title="运行已填写"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="by.todo || 0"
- icon="fa-solid:times-circle"
- icon-bg-color="text-green-500"
- icon-color="bg-green-100"
- title="未执行保养"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="by.finished || 0"
- icon="fa-solid:award"
- icon-bg-color="text-green-500"
- icon-color="bg-green-100"
- title="已执行保养"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="inspectt.todo || 0"
- icon="fa-solid:times-circle"
- icon-bg-color="text-yellow-500"
- icon-color="bg-yellow-100"
- title="待填写巡检"
- />
- </el-col>
- <el-col :sm="3" :xs="12">
- <SummaryCard
- :value="inspectt.finished || 0"
- icon="fa-solid:award"
- icon-bg-color="text-yellow-500"
- icon-color="bg-yellow-100"
- title="已填写巡检"
- />
- </el-col>
- <!-- 其他统计卡片... -->
- </el-row>
- <!-- 第二行:图表行 -->
- <el-row :gutter="16" class="mb-4 mt-3">
- <el-col :span="7">
- <el-card class="chart-card" shadow="never">
- <template #header>
- <div class="flex items-center">
- <span class="text-base font-medium " style="color: #b6c8da">设备状态统计</span>
- </div>
- </template>
- <div ref="statusChartRef" class="h-[290px]"></div>
- </el-card>
- </el-col>
- <el-col :span="7">
- <el-card class="chart-card" shadow="never" >
- <template #header>
- <div class="flex items-center">
- <span class="text-base font-medium " style="color: #b6c8da">设备类别TOP数量</span>
- </div>
- </template>
- <div ref="topContainer" class="h-[290px]"></div>
- </el-card>
- </el-col>
- <el-col :span="10">
- <el-card class="chart-card" shadow="never">
- <template #header>
- <div class="flex items-center justify-between">
- <span class="text-base font-medium " style="color: #b6c8da">近七日运维成本</span>
- </div>
- </template>
- <div ref="chartContainer" class="h-[290px]"></div>
- </el-card>
- </el-col>
- </el-row>
- <!-- 第三行:消息统计行 -->
- <el-row :gutter="16" class="mb-1">
- <el-col :span="7">
- <el-card class="chart-card" shadow="never">
- <template #header>
- <div class="flex items-center">
- <span class="text-base font-medium " style="color: #b6c8da">近7天物料消耗TOP5</span>
- </div>
- </template>
- <div ref="materialChartRef" class="h-[320px]"></div>
- </el-card>
- </el-col>
- <el-col :span="17">
- <el-card class="chart-card" shadow="never">
- <template #header>
- <div class="flex items-center justify-between">
- <span class="text-base font-medium " style="color: #b6c8da">工单数量情况</span>
- </div>
- </template>
- <div ref="qxRef" class="h-[320px]"></div>
- </el-card>
- </el-col>
- </el-row>
- <el-row :gutter="16" class="mb-1 mt-4">
- <el-col :span="12">
- <el-card class="chart-card" shadow="never">
- <template #header>
- <div class="flex items-center justify-between">
- <span class="text-base font-medium " style="color: #b6c8da">累计注气/注水量统计</span>
- </div>
- </template>
- <div ref="zqlChartRef" class="h-[300px]"></div>
- </el-card>
- </el-col>
- <el-col :span="12">
- <el-card class="chart-card" shadow="never">
- <template #header>
- <div class="flex items-center justify-between">
- <span class="text-base font-medium " style="color: #b6c8da">当日注气/注水量统计</span>
- </div>
- </template>
- <div ref="todayZqlRef" class="h-[300px]"></div>
- </el-card>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup lang="ts" name="Index">
- import * as echarts from 'echarts/core'
- import { BarChart, GaugeChart, LineChart, PieChart } from 'echarts/charts' // 显式导入柱状图模块
- import {
- GridComponent,
- LegendComponent,
- TitleComponent,
- ToolboxComponent,
- TooltipComponent
- } from 'echarts/components'
- import { LabelLayout, UniversalTransition } from 'echarts/features'
- import { CanvasRenderer } from 'echarts/renderers'
- import { useElementSize } from '@vueuse/core'
- import { IotStatApi } from '@/api/pms/stat'
- import SummaryCard from '@/components/SummaryCard/index.vue'
- import { reactive, ref } from 'vue'
- /** IoT 首页 */
- defineOptions({ name: 'IotRhStat' })
- echarts.use([
- TooltipComponent,
- LegendComponent,
- PieChart,
- CanvasRenderer,
- LabelLayout,
- TitleComponent,
- ToolboxComponent,
- GridComponent,
- LineChart,
- UniversalTransition,
- GaugeChart,
- BarChart
- ])
- const by = ref({
- todo: undefined,
- finished: undefined
- })
- const fill = ref({
- filledCount: undefined,
- unfilledCount: undefined
- })
- const inspectt = ref({
- finished: 0,
- todo: 0
- })
- const backendData = ref([])
- const statusChartRef = ref() // 设备数量统计的图表
- const materialChartRef = ref() // 设备数量统计的图表
- const zqlChartRef = ref() // 注气量统计的图表
- const todayZqlRef = ref() // 注气量统计的图表
- const device = ref({
- total: undefined,
- today: undefined
- })
- const maintain = ref({
- total: undefined,
- today: undefined
- })
- const work = ref({
- total: undefined,
- today: undefined
- })
- const inspect = ref({
- total: undefined,
- today: undefined
- })
- const status = ref({
- finished: 0,
- todo: 0
- })
- const todayStatus = ref({
- finished: 0,
- todo: 0
- })
- const typeData = ref({})
- const materialData = ref({})
- const orderSevenData = ref({})
- const ywcbSevenData = ref({})
- const zqlData = ref({})
- const zqlTodayData = ref({})
- /** 获取统计数据 */
- const getStats = () => {
- initYwcbChart()
- // 获取基础统计数据
- IotStatApi.getDeviceCount('rh').then((res) => {
- device.value = res
- })
- IotStatApi.getMaintainCount('rh').then((res) => {
- maintain.value = res
- })
- IotStatApi.getMainWorkCount("").then((res) => {
- work.value = res
- })
- IotStatApi.getInspectCount("").then((res) => {
- inspect.value = res
- })
- // IotStatApi.getMaintenanceStatus("").then((res) => {
- // status.value = res
- // // initCharts()
- // })
- IotStatApi.getMaintenanceTodayStatus("").then((res) => {
- todayStatus.value = res
- initTopChart()
- })
- IotStatApi.getDeviceStatusCount('rh').then((res) => {
- typeData.value = res
- initDeviceStatusCharts()
- })
- // IotStatApi.getSafeCount().then((res) => {
- // safe.value = res
- // })
- IotStatApi.getMaterial().then((res) => {
- materialData.value = res
- initMaterials()
- })
- IotStatApi.getOrderSeven('rh').then((res) => {
- orderSevenData.value = res
- initQxChart()
- })
- IotStatApi.getOrderYwcb('rh').then((res) => {
- ywcbSevenData.value = res
- initYwcbChart()
- })
- IotStatApi.getMaintenanceStatus('rh').then((res) => {
- by.value = res
- })
- IotStatApi.getRhZql('rh').then((res) => {
- zqlData.value = res
- initZqlChart()
- })
- IotStatApi.getRhZqlToday('rh').then((res) => {
- zqlTodayData.value = res
- initTodayZqlChart()
- })
- const fillQueryParams = reactive({
- startTime: Date.now() - 7 * 24 * 60 * 60 * 1000, // 设置默认开始时间为 7 天前
- endTime: Date.now(), // 设置默认结束时间为当前时间
- createTime: [],
- deptId: '', // 选中的部门ID
- status: null // 填写状态
- })
- IotStatApi.getInspectStatuss(fillQueryParams, 'rh').then((res) => {
- inspectt.value = res
- })
- fillQueryParams.deptId = '157'
- IotStatApi.getDeptStatistics(fillQueryParams).then((res) => {
- fill.value = res.totalList[0] || []
- })
- }
- let materialInstance;
- const initMaterials = () => {
- if (!materialChartRef.value) return
- const option = {
- tooltip: {
- trigger: 'item'
- },
- legend: {
- orient: 'horizontal', // 水平排列图例项
- bottom: '0%', // 放置在底部
- icon: 'circle',
- textStyle: {
- color:'#B6C8DA'
- }
- },
- series: [
- {
- name: '',
- type: 'pie',
- radius: ['50%', '80%'],
- avoidLabelOverlap: false,
- center: ['50%', '44%'],
- label: {
- show: false,
- position: 'outside',
- color:'#B6C8DA'
- },
- emphasis: {
- label: {
- show: true,
- fontSize: 15,
- fontWeight: 'bold'
- }
- },
- labelLine: {
- show: false
- },
- data: materialData.value
- }
- ]
- }
- // 初始化图表
- materialInstance = echarts.init(materialChartRef.value)
- materialInstance.setOption(option)
- // 窗口缩放监听
- window.addEventListener('resize', handleMaterialResize)
- handleMaterialResize()
- }
- let zqlTodayInstance = null
- const initTodayZqlChart = async () => {
- if (!todayZqlRef.value) return
- zqlTodayInstance = echarts.init(todayZqlRef.value)
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- label: {
- backgroundColor: '#6a7985'
- }
- }
- },
- legend: {
- data: zqlTodayData.value.series.map((item) => item.name),
- top: 30,
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: zqlTodayData.value.xAxis,
- axisLine: {
- lineStyle: {
- color: '#B6C8DA' // X轴线白色半透明
- }
- },
- axisLabel: {
- color: '#B6C8DA',
- formatter: (value) => value.split('-').join('/') // 显示为 2023/01
- }
- },
- yAxis: [
- {
- type: 'value',
- name:'当日注气量(m³)',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- },
- position: 'left' // 左侧 Y 轴
- },
- {
- type: 'value',
- name:'当日注水量(m³)',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- },
- position: 'right', // 右侧 Y 轴
- splitLine: {
- show: false // 隐藏右侧 Y 轴的分割线
- }
- }
- ],
- series: zqlTodayData.value.series.map((item, index) => {
- // 假设前两条曲线使用左侧 Y 轴,后两条曲线使用右侧 Y 轴
- const yAxisIndex = index < 1 ? 0 : 1
- return {
- name: item.name,
- type: 'line',
- smooth: true,
- symbol: 'circle',
- symbolSize: 8,
- itemStyle: {
- color: ['#5470c6', '#f1d209'][index]
- },
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: 'rgba(84,112,198,0.4)' },
- { offset: 1, color: 'rgba(84,112,198,0.1)' }
- ])
- },
- data: item.data,
- yAxisIndex: yAxisIndex // 指定使用的 Y 轴
- }
- })
- }
- zqlTodayInstance.setOption(option)
- // 窗口缩放监听
- window.addEventListener('resize', handleZqlTodayResize)
- handleZqlTodayResize()
- }
- /** 初始化图表 */
- const initDeviceStatusCharts = () => {
- // 设备数量统计
- echarts.init(statusChartRef.value).setOption({
- tooltip: {
- trigger: 'item'
- },
- legend: {
- orient: 'horizontal', // 水平排列图例项
- bottom: '0%', // 放置在底部
- icon: 'circle',
- textStyle: {
- color: '#B6C8DA'
- }
- },
- series: [
- {
- name: '',
- type: 'pie',
- radius: ['50%', '80%'],
- avoidLabelOverlap: false,
- center: ['50%', '44%'],
- label: {
- show: false,
- position: 'outside',
- color: 'white'
- },
- emphasis: {
- label: {
- show: true,
- fontSize: 15,
- fontWeight: 'bold'
- }
- },
- labelLine: {
- show: false
- },
- data: typeData.value
- }
- ]
- })
- }
- /** 初始化消息统计图表 */
- const chartContainer = ref(null)
- let chartInstance;
- // 模拟数据获取
- const fetchChartData = async () => {
- // 模拟异步请求
- return new Promise((resolve) => {
- setTimeout(() => {
- resolve({
- months: ['空压机', '增压机', '提纯撬'],
- repairs: [10, 30, 90]
- })
- }, 300)
- })
- }
- // 初始化图表配置
- const initYwcbChart = async () => {
- if (!chartContainer.value) return
- // 获取数据
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- },
- // formatter: (params) => {
- // return `${params[0].axisValue}<br/>
- // ${params[0].marker} ${params[0].seriesName}: ${params[0].value}`
- // }
- },
- legend: {
- data: ['当日运维成本'],
- top: 1,
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '1%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: ywcbSevenData.value.xAxis,
- axisLabel: {
- color: '#B6C8DA',
- formatter: (value) => value.split('-').join('/')
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA' // X轴线白色半透明
- }
- },
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- color: '#B6C8DA',
- // formatter: (value) => Math.floor(value).toString()
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- series: [
- {
- name: '当日运维成本',
- type: 'bar',
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: '#f69606' }])
- },
- emphasis: {
- focus: 'series'
- },
- data: ywcbSevenData.value.series
- }
- ]
- }
- // 初始化图表
- chartInstance = echarts.init(chartContainer.value)
- chartInstance.setOption(option)
- // 窗口缩放监听
- window.addEventListener('resize', handleResize)
- handleResize()
- }
- // 自适应调整
- const handleResize = () => {
- chartInstance?.resize()
- }
- // 自适应调整
- const handleQxResize = () => {
- qxInstance?.resize()
- }
- const handleZqlResize = () => {
- zqlInstance?.resize()
- }
- const handleZqlTodayResize = () => {
- zqlTodayInstance?.resize()
- }
- const handleMaterialResize = () => {
- materialInstance?.resize()
- }
- const topContainer = ref(null)
- let topInstance;
- // 响应式容器尺寸
- const { width, height } = useElementSize(topContainer)
- // 初始化图表配置
- const getTopOption = () => {
- // backendData.value = data
- const data = backendData.value.sort((a, b) => a.value - b.value)
- return {
- tooltip: {
- trigger: 'axis',
- axisPointer: { type: 'shadow' },
- formatter: (params) => {
- const item = params[0]
- return `${item.name}<br/>${item.marker} ${item.value.toLocaleString()}`
- }
- },
- grid: {
- height: '200px',
- left: '6%',
- right: '6%',
- bottom: '18%',
- containLabel: true
- },
- xAxis: {
- type: 'value',
- axisLabel: {
- color: '#B6C8DA',
- formatter: (value) => {
- if (value >= 10000) return `${(value / 10000).toFixed(1)}万`
- return value.toLocaleString()
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA' // X轴线白色半透明
- }
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- }
- },
- yAxis: {
- type: 'category',
- data: data.map((item) => item.category),
- axisTick: { show: false },
- axisLabel: { color: '#B6C8DA' },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA' // X轴线白色半透明
- }
- }
- },
- series: [
- {
- type: 'bar',
- data: data.map((item) => item.value),
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
- { offset: 0, color: '#83bff6' },
- { offset: 0.7, color: '#188df0' },
- { offset: 1, color: '#188df0' }
- ]),
- borderRadius: [0, 8, 8, 0]
- },
- label: {
- show: true,
- position: 'right',
- formatter: '{@value}',
- color: '#B6C8DA',
- fontWeight: 'bold'
- },
- emphasis: {
- itemStyle: {
- shadowBlur: 10,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- }
- }
- ]
- }
- }
- // 初始化图表
- const initTopChart = async () => {
- await IotStatApi.getDeviceTypeCount('rh').then((res) => {
- backendData.value = res
- })
- if (!topContainer.value) return
- topInstance = echarts.init(topContainer.value)
- updateTopChart()
- }
- // 更新图表
- const updateTopChart = () => {
- if (!topInstance) return
- topInstance.setOption(getTopOption())
- }
- // 自适应调整
- watch([width, height], () => {
- topInstance?.resize()
- })
- // 监听数据变化
- watch(
- backendData,
- () => {
- updateTopChart()
- },
- { deep: true }
- )
- const qxRef = ref(null)
- let qxInstance;
- let zqlInstance;
- const initZqlChart = () => {
- if (!zqlChartRef.value) return
- // 获取数据
- // ECharts配置
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow',
- label: {
- backgroundColor: '#6a7985'
- }
- }
- // trigger: 'axis',
- // axisPointer: {
- // type: 'shadow'
- // },
- // formatter: (params) => {
- // return `${params[0].axisValue}<br/>
- // ${params[0].marker} ${params[0].seriesName}: ${params[0].value}`
- // }
- },
- legend: {
- data: zqlData.value.series.map((item) => item.name),
- top: 30,
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: zqlData.value.xAxis,
- axisLine: {
- lineStyle: {
- color: '#B6C8DA' // X轴线白色半透明
- }
- },
- axisLabel: {
- color: '#B6C8DA',
- formatter: (value) => value.split('-').join('/')
- }
- },
- yAxis: [
- {
- type: 'value',
- name: '累计注气量(m³)',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- },
- position: 'left' // 左侧 Y 轴
- },
- {
- type: 'value',
- name: '累计注水量(m³)',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- },
- position: 'right', // 右侧 Y 轴
- splitLine: {
- show: false // 隐藏右侧 Y 轴的分割线
- }
- }
- ],
- series: zqlData.value.series.map((item, index) => {
- // 假设前两条曲线使用左侧 Y 轴,后两条曲线使用右侧 Y 轴
- const yAxisIndex = index < 1 ? 0 : 1
- return {
- name: item.name,
- type: 'bar',
- smooth: true,
- symbol: 'circle',
- symbolSize: 8,
- itemStyle: {
- color: [ '#91cc75','#f1d209'][index]
- },
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: 'rgba(84,112,198,0.4)' },
- { offset: 1, color: 'rgba(84,112,198,0.1)' }
- ])
- },
- data: item.data,
- yAxisIndex: yAxisIndex // 指定使用的 Y 轴
- }
- })
- }
- // 初始化图表
- zqlInstance = echarts.init(zqlChartRef.value)
- zqlInstance.setOption(option)
- // 窗口缩放监听
- window.addEventListener('resize', handleZqlResize)
- handleZqlResize()
- }
- const initQxChart = () => {
- if (!qxRef.value) return
- qxInstance = echarts.init(qxRef.value)
- debugger
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- label: {
- backgroundColor: '#6a7985'
- }
- }
- },
- legend: {
- data: orderSevenData.value.series.map((item) => item.name),
- top: 30,
- textStyle: {
- color:'#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: orderSevenData.value.xAxis,
- axisLabel: {
- color: '#B6C8DA',
- formatter: (value) => value.split('-').join('/')
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA' // X轴线白色半透明
- }
- },
- },
- yAxis: [
- {
- type: 'value',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- },
- position: 'left' // 左侧 Y 轴
- },
- {
- type: 'value',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- },
- position: 'right', // 右侧 Y 轴
- splitLine: {
- show: false // 隐藏右侧 Y 轴的分割线
- }
- }
- ],
- series: orderSevenData.value.series.map((item, index) => {
- // 假设前两条曲线使用左侧 Y 轴,后两条曲线使用右侧 Y 轴
- const yAxisIndex = index < 2 ? 0 : 1
- return {
- name: item.name,
- type: 'line',
- smooth: true,
- symbol: 'circle',
- symbolSize: 8,
- itemStyle: {
- color: ['#5470c6', '#f1d209', '#e14f0f', '#91cc75'][index]
- },
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: 'rgba(84,112,198,0.4)' },
- { offset: 1, color: 'rgba(84,112,198,0.1)' }
- ])
- },
- data: item.data,
- yAxisIndex: yAxisIndex // 指定使用的 Y 轴
- }
- })
- }
- qxInstance.setOption(option)
- // 窗口缩放监听
- window.addEventListener('resize', handleQxResize)
- handleQxResize()
- }
- // 响应式调整
- const resizeQxChart = () => qxInstance?.resize()
- const resizeZqlChart = () => zqlInstance?.resize()
- const resizeZqlTodayChart = () => zqlTodayInstance?.resize()
- const resizeMaterialChart = () => materialInstance?.resize()
- /** 初始化 */
- onMounted(() => {
- getStats()
- // initChart()
- // initTopChart()
- // initActiveChart()
- // initQxChart()
- window.addEventListener('resize', resizeQxChart)
- // fetchTop()
- window.addEventListener('resize', () => topInstance?.resize())
- })
- onBeforeUnmount(() => {
- chartInstance?.dispose()
- window.removeEventListener('resize', () => chartInstance?.resize())
- topInstance?.dispose()
- window.removeEventListener('resize', handleResize)
- qxInstance?.dispose()
- window.removeEventListener('resize', resizeQxChart)
- zqlInstance?.dispose()
- window.removeEventListener('resize', resizeZqlChart)
- zqlTodayInstance?.dispose()
- window.removeEventListener('resize', resizeZqlTodayChart)
- materialInstance?.dispose()
- window.removeEventListener('resize', resizeMaterialChart)
- })
- </script>
- <style lang="scss" scoped>
- .page-container {
- background-color: #3a6fa3;
- min-height: 100vh;
- padding: 20px;
- }
- .summary {
- margin-bottom: 20px;
- }
- ::v-deep .chart-card {
- background-color: rgba(0, 0, 0, 0.3);
- border-radius: 8px;
- box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
- transition: all 0.3s ease;
- border: none;
- &:hover {
- box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
- }
- }
- .safety-days-card {
- .safety-days-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 150px;
- position: relative;
- .days-number {
- font-size: 58px;
- font-weight: bold;
- color: darkorange;
- line-height: 1;
- transition: all 0.3s ease;
- }
- .days-number:hover {
- transform: scale(1.05);
- }
- .days-label {
- font-size: 20px;
- color: white;
- margin-top: 8px;
- }
- .safety-desc {
- font-size: 14px;
- color: #999;
- position: absolute;
- bottom: 10px;
- text-align: center;
- width: 90%;
- }
- }
- }
- @media (max-width: 768px) {
- .page-container {
- padding: 10px;
- }
- }
- ::v-deep .el-card__header {
- border-bottom: none !important;
- padding-bottom: 0;
- }
- </style>
|