1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048 |
- <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="6">
- <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-[320px]"></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">项目部设备数量统计</span>
- </div>
- </template>
- <div ref="topContainer" class="h-[320px]"></div>
- </el-card>
- </el-col>
- <el-col :span="11">
- <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-4">
- <el-col :span="8">
- <div class="flex flex-col justify-between">
- <el-card class="safety-days-card chart-card h-[230px]" shadow="never">
- <template #header>
- <div class="flex items-center">
- <span class="text-base font-medium" style="color: #b6c8da">安全生产天数</span>
- </div>
- </template>
- <div class="safety-days-content">
- <div class="days-number">{{ 165 }}</div>
- <div class="days-label">天</div>
- <div class="safety-desc">截至当前连续安全生产天数</div>
- </div>
- </el-card>
- <el-card class="chart-card mt-1" shadow="never">
- <template #header>
- <div class="flex items-center">
- <span class="text-base font-medium" style="color: #b6c8da">钻井完成情况</span>
- </div>
- </template>
- <div ref="drillingWellChartRef" class="h-[170px]"></div>
- </el-card>
- </div>
- </el-col>
- <el-col :span="8">
- <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="drillingWorkloadChartRef" class="h-[405px]"></div>
- </el-card>
- </el-col>
- <el-col :span="8">
- <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="repairWorkloadChartRef" class="h-[405px]"></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 { IotStatisticsSummaryRespVO } from '@/api/iot/statistics'
- import { IotStatApi } from '@/api/pms/stat'
- import SummaryCard from '@/components/SummaryCard/index.vue'
- import { onBeforeUnmount, onMounted, reactive, ref, watch } from 'vue'
- // TODO @super:参考下 /Users/yunai/Java/yudao-ui-admin-vue3/src/views/mall/home/index.vue,拆一拆组件
- /** IoT 首页 */
- defineOptions({ name: 'IotRyStat' })
- // TODO @super:使用下 Echart 组件,参考 yudao-ui-admin-vue3/src/views/mall/home/components/TradeTrendCard.vue 等
- echarts.use([
- TooltipComponent,
- LegendComponent,
- PieChart,
- CanvasRenderer,
- LabelLayout,
- TitleComponent,
- ToolboxComponent,
- GridComponent,
- LineChart,
- UniversalTransition,
- GaugeChart,
- BarChart
- ])
- const dateRange = ref<[Date, Date] | null>(null)
- const by = ref({
- todo: undefined,
- finished: undefined
- })
- const fill = ref({
- filledCount: undefined,
- unfilledCount: undefined
- })
- const inspectt = ref({
- finished: 0,
- todo: 0
- })
- const queryParams = reactive({
- startTime: Date.now() - 7 * 24 * 60 * 60 * 1000, // 设置默认开始时间为 7 天前
- endTime: Date.now() // 设置默认结束时间为当前时间
- })
- const backendData = ref([])
- const statusChartRef = ref() // 设备数量统计的图表
- // const materialChartRef = ref() // 设备数量统计的图表
- const drillingWorkloadChartRef = ref()
- const repairWorkloadChartRef = ref()
- // 基础统计数据
- // TODO @super:初始为 -1,然后界面展示先是加载中?试试用 cursor 改哈
- const statsData = ref<IotStatisticsSummaryRespVO>({
- productCategoryCount: 0,
- productCount: 0,
- deviceCount: 0,
- deviceMessageCount: 0,
- productCategoryTodayCount: 0,
- productTodayCount: 0,
- deviceTodayCount: 0,
- deviceMessageTodayCount: 0,
- deviceOnlineCount: 0,
- deviceOfflineCount: 0,
- deviceInactiveCount: 0,
- productCategoryDeviceCounts: {}
- })
- 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 safe = ref()
- // 新增:修井完成情况数据
- const repairWellData = ref({
- xAxis: ['小修10队', '小修8队', '小修9队'],
- series: [
- { name: '日累完成井数', data: [10, 15, 20] },
- { name: '月累完成井数', data: [50, 60, 70] },
- { name: '年累完成井数', data: [200, 220, 250] }
- ]
- })
- // 新增:钻井完成情况数据
- const drillingWellData = ref({
- xAxis: ['50010队', '四川宝石带压作业队'],
- series: [
- // { name: '日累完成井数', data: [5, 8] },
- { name: '月累完成井数', data: [40, 30] },
- { name: '年累完成井数', data: [180, 150] }
- ]
- })
- const drillingWorkloadData = ref({
- xAxis: ['SCP项目部', '伊拉克项目部', '陕西项目部'],
- series: [
- { name: '日累进尺', data: [150, 100, 200] },
- { name: '月累进尺', data: [1000, 1200, 1500] },
- { name: '年累进尺', data: [2000, 5000, 10000] }
- ]
- })
- // 新增:修井工作量情况数据
- const repairWorkloadData = ref({
- xAxis: ['SCP项目部', '伊拉克项目部', '陕西项目部'],
- series: [
- // { name: '日累进尺', data: [120,80, 160] },
- { name: '月完井数', data: [1300, 800, 1000] },
- { name: '年完井数', data: [4000, 5000, 7000] }
- ]
- })
- const repairWellChartRef = ref()
- const drillingWellChartRef = ref()
- /** 获取统计数据 */
- const getStats = () => {
- // 获取基础统计数据
- IotStatApi.getDeviceCount('ry').then((res) => {
- device.value = res
- })
- IotStatApi.getMaintainCount('ry').then((res) => {
- maintain.value = res
- })
- IotStatApi.getMainWorkCount().then((res) => {
- work.value = res
- })
- IotStatApi.getInspectCount().then((res) => {
- inspect.value = res
- })
- IotStatApi.getMaintenanceStatus('ry').then((res) => {
- status.value = res
- // initCharts()
- })
- // IotStatApi.getMaintenanceTodayStatus().then((res) => {
- // todayStatus.value = res
- // initTopChart()
- // })
- IotStatApi.getDeviceStatusCount('ry').then((res) => {
- typeData.value = res
- initDeviceStatusCharts()
- })
- IotStatApi.getSafeCount().then((res) => {
- safe.value = res
- })
- // IotStatApi.getMaterial().then((res) => {
- // materialData.value = res
- // initMaterials()
- // })
- IotStatApi.getOrderSeven('ry').then((res) => {
- orderSevenData.value = res
- initQxChart()
- })
- IotStatApi.getMaintenanceStatus().then((res) => {
- by.value = res
- })
- const fillQueryParams = reactive({
- startTime: Date.now() - 7 * 24 * 60 * 60 * 1000, // 设置默认开始时间为 7 天前
- endTime: Date.now(), // 设置默认结束时间为当前时间
- createTime: [],
- deptId: null, // 选中的部门ID
- status: null // 填写状态
- })
- IotStatApi.getInspectStatuss(fillQueryParams, 'ry').then((res) => {
- inspectt.value = res
- })
- fillQueryParams.deptId = '158'
- IotStatApi.getDeptStatistics(fillQueryParams).then((res) => {
- fill.value = res.totalList[0] || []
- })
- IotStatApi.getProject('ry').then((res) => {
- typeData.value = res;
- initProjectCharts()
- })
- }
- const initDrillingWorkloadChart = () => {
- if (!drillingWorkloadChartRef.value) return
- const chart = echarts.init(drillingWorkloadChartRef.value)
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- legend: {
- data: drillingWorkloadData.value.series.map((item) => item.name),
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: drillingWorkloadData.value.xAxis,
- axisLabel: {
- color: '#B6C8DA'
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- yAxis: {
- type: 'value',
- name: '进尺(米)',
- axisLabel: {
- color: '#B6C8DA'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- series: drillingWorkloadData.value.series.map((item) => ({
- name: item.name,
- type: 'bar',
- data: item.data
- }))
- }
- chart.setOption(option)
- }
- // 新增:初始化修井工作量情况图表
- const initRepairWorkloadChart = () => {
- if (!repairWorkloadChartRef.value) return
- const chart = echarts.init(repairWorkloadChartRef.value)
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- legend: {
- data: repairWorkloadData.value.series.map((item) => item.name),
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: repairWorkloadData.value.xAxis,
- axisLabel: {
- color: '#B6C8DA'
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- yAxis: {
- type: 'value',
- name: '进尺(米)',
- axisLabel: {
- color: '#B6C8DA'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- series: repairWorkloadData.value.series.map((item) => ({
- name: item.name,
- type: 'bar',
- data: item.data
- }))
- }
- chart.setOption(option)
- }
- /** 初始化图表 */
- 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%', '46%'],
- label: {
- show: false,
- position: 'outside',
- color: 'white'
- },
- emphasis: {
- label: {
- show: true,
- fontSize: 15,
- fontWeight: 'bold'
- }
- },
- labelLine: {
- show: false
- },
- data: typeData.value
- }
- ]
- })
- }
- // 自适应调整
- const handleResize = () => {
- chartInstance?.resize()
- }
- const topContainer = ref(null)
- let topInstance = null
- // 响应式容器尺寸
- const { width, height } = useElementSize(topContainer)
- const initProjectCharts = () => {
- const chart = echarts.init(topContainer.value);
- chart.setOption({
- tooltip: {
- trigger: 'item'
- },
- legend: {
- // top: '5%',
- // right: '10%',
- // align: 'center',
- orient: 'horizontal', // 水平排列图例项
- bottom: '0%', // 放置在底部
- icon: 'circle',
- textStyle: {
- color:'#B6C8DA'
- }
- },
- series: [
- {
- name: '',
- type: 'pie',
- radius: ['0%', '70%'],
- avoidLabelOverlap: false,
- center: ['50%', '45%'],
- label: {
- show: false,
- position: 'outside',
- color:'#B6C8DA'
- },
- emphasis: {
- label: {
- show: true,
- fontSize: 15,
- fontWeight: 'bold'
- }
- },
- labelLine: {
- show: true
- },
- data: typeData.value
- }
- ]})
- }
- // 自适应调整
- watch([width, height], () => {
- topInstance?.resize()
- })
- const activeDom = ref(null)
- let activeInstance = null
- const activeData = ref([])
- const initActiveChart = async () => {
- if (!activeDom.value) return
- activeData.value = await IotStatApi.getDeptCount()
- activeInstance = echarts.init(activeDom.value)
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: { type: 'shadow' },
- formatter: (params) => `
- ${params[0].name}<br/>
- ${params[0].marker} 总人数: ${params[0].value}<br/>
- ${params[1].marker} 活跃人数: ${params[1].value}
- `
- },
- legend: {
- data: ['总人数', '活跃人数'],
- top: 30
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: activeData.value.map((item) => item.department),
- axisLabel: {
- interval: 0,
- rotate: 0
- }
- },
- yAxis: {
- type: 'value',
- name: '人数',
- splitLine: {
- show: true,
- lineStyle: { type: 'dashed' }
- }
- },
- series: [
- {
- name: '总人数',
- type: 'bar',
- data: activeData.value.map((item) => item.total),
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#5470c6' },
- { offset: 1, color: '#83bff6' }
- ])
- },
- barWidth: 30
- },
- {
- name: '活跃人数',
- type: 'bar',
- data: activeData.value.map((item) => item.active),
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#91cc75' },
- { offset: 1, color: '#e6f4d2' }
- ])
- },
- barWidth: 30
- }
- ]
- }
- activeInstance.setOption(option)
- }
- const qxRef = ref(null)
- let qxInstance = null
- // 生成近12个月份 (包含当年和去年)
- const generateMonths = () => {
- const months = []
- const date = new Date()
- date.setMonth(date.getMonth() + 1, 1) // 从下个月开始倒推
- for (let i = 0; i < 12; i++) {
- date.setMonth(date.getMonth() - 1)
- months.push(`${date.getFullYear()}-${(date.getMonth() + 1).toString().padStart(2, '0')}`)
- }
- return months.reverse()
- }
- 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('/') // 显示为 2023/01
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- 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: {
- formatter: '{value}'
- },
- 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)
- }
- // 响应式调整
- const resizeQxChart = () => qxInstance?.resize()
- // 新增:初始化修井完成情况图表
- const initRepairWellChart = () => {
- if (!repairWellChartRef.value) return
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- legend: {
- data: repairWellData.value.series.map((item) => item.name),
- top: 10,
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: repairWellData.value.xAxis,
- axisLabel: {
- color: '#B6C8DA'
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- yAxis: {
- type: 'value',
- name: '完成井数(口)',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- series: repairWellData.value.series.map((item) => ({
- name: item.name,
- type: 'bar',
- data: item.data
- }))
- }
- const chart = echarts.init(repairWellChartRef.value)
- chart.setOption(option)
- window.addEventListener('resize', () => chart.resize())
- }
- // 新增:初始化钻井完成情况图表
- const initDrillingWellChart = () => {
- if (!drillingWellChartRef.value) return
- const option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- legend: {
- data: drillingWellData.value.series.map((item) => item.name),
- top: 10,
- textStyle: {
- color: '#B6C8DA'
- }
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: drillingWellData.value.xAxis,
- axisLabel: {
- color: '#B6C8DA',
- formatter: (value) => value.split('-').join('/') // 显示为 2023/01
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- yAxis: {
- type: 'value',
- name: '完成井数(口)',
- axisLabel: {
- color: '#B6C8DA',
- formatter: '{value}'
- },
- splitLine: {
- show: true, // 显示水平网格线(默认显示)
- lineStyle: {
- // 水平网格线颜色(可设置为纯色或带透明度的颜色)
- color: '#457794', // 浅灰色半透明
- // 可选:设置线条类型(实线/虚线/点线)
- type: 'dashed'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#B6C8DA'
- }
- }
- },
- series: drillingWellData.value.series.map((item) => ({
- name: item.name,
- type: 'bar',
- data: item.data
- }))
- }
- const chart = echarts.init(drillingWellChartRef.value)
- chart.setOption(option)
- window.addEventListener('resize', () => chart.resize())
- }
- /** 初始化 */
- onMounted(() => {
- getStats()
- // initChart()
- // initTopChart()
- // initActiveChart()
- // initQxChart()
- window.addEventListener('resize', resizeQxChart)
- // fetchTop()
- window.addEventListener('resize', () => topInstance?.resize())
- initRepairWellChart()
- initDrillingWellChart()
- initDrillingWorkloadChart()
- initRepairWorkloadChart()
- })
- onBeforeUnmount(() => {
- chartInstance?.dispose()
- window.removeEventListener('resize', () => chartInstance?.resize())
- topInstance?.dispose()
- window.removeEventListener('resize', handleResize)
- qxInstance?.dispose()
- window.removeEventListener('resize', resizeQxChart)
- echarts.getInstanceByDom(repairWellChartRef.value)?.dispose()
- window.removeEventListener('resize', () =>
- echarts.getInstanceByDom(repairWellChartRef.value)?.resize()
- )
- echarts.getInstanceByDom(drillingWellChartRef.value)?.dispose()
- window.removeEventListener('resize', () =>
- echarts.getInstanceByDom(drillingWellChartRef.value)?.resize()
- )
- })
- </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>
|