15 changed files with 691 additions and 583 deletions
@ -0,0 +1,57 @@ |
|||||||
|
import request from '@/config/axios' |
||||||
|
|
||||||
|
export const HomeApi = { |
||||||
|
/** |
||||||
|
* 获取区域 |
||||||
|
*/ |
||||||
|
getArea: () => { |
||||||
|
return request.get({ |
||||||
|
url: `/system/home/getUserArea` |
||||||
|
}) |
||||||
|
}, |
||||||
|
/** |
||||||
|
* 获取列表数据 |
||||||
|
*/ |
||||||
|
getListData: params => { |
||||||
|
return request.get({ |
||||||
|
url: '/system/home/appCount2', |
||||||
|
params |
||||||
|
}) |
||||||
|
}, |
||||||
|
/** |
||||||
|
* 获取饼图相关的数据 |
||||||
|
*/ |
||||||
|
getPieData: (params) => { |
||||||
|
return request.get({ |
||||||
|
url: '/system/home/appCount1', |
||||||
|
params |
||||||
|
}) |
||||||
|
}, |
||||||
|
/** |
||||||
|
* 近6个月任务走势 |
||||||
|
*/ |
||||||
|
getTaskNumDoing:params=>{ |
||||||
|
return request.get({ |
||||||
|
url: '/system/home/taskNumDoing', |
||||||
|
params |
||||||
|
}) |
||||||
|
}, |
||||||
|
/** |
||||||
|
* 执法整改 |
||||||
|
*/ |
||||||
|
getExecCorrection:params=>{ |
||||||
|
return request.get({ |
||||||
|
url: '/system/home/execCorrectionCount', |
||||||
|
params |
||||||
|
}) |
||||||
|
}, |
||||||
|
/** |
||||||
|
* 最新任务 |
||||||
|
*/ |
||||||
|
getNewTask:params=> { |
||||||
|
return request.get({ |
||||||
|
url: 'system/task-info/appPage', |
||||||
|
params |
||||||
|
}) |
||||||
|
} |
||||||
|
} |
@ -1,366 +1,600 @@ |
|||||||
<template> |
<template> |
||||||
<el-row :gutter="8" justify="space-between"> |
<el-row justify="space-between"> |
||||||
|
<el-col :span="14"> |
||||||
|
<el-form :model="queryParams" class="queryForm" inline> |
||||||
|
<el-form-item label="按区域" prop="region"> |
||||||
|
<el-select |
||||||
|
v-model="queryParams.region" |
||||||
|
placeholder="请选择区域" |
||||||
|
size="large" |
||||||
|
@change="getData" |
||||||
|
> |
||||||
|
<el-option |
||||||
|
v-for="option in area" |
||||||
|
:key="option.value" |
||||||
|
:value="option.value" |
||||||
|
:label="option.label" |
||||||
|
/> |
||||||
|
</el-select> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="按周期" prop="selectWeek"> |
||||||
|
<el-select |
||||||
|
v-model="queryParams.selectWeek" |
||||||
|
placeholder="请选择周期" |
||||||
|
clearable |
||||||
|
size="large" |
||||||
|
@select="getData" |
||||||
|
@change="getData" |
||||||
|
> |
||||||
|
<el-option |
||||||
|
v-for="option in getIntDictOptions(DICT_TYPE.SELECT_WEEK)" |
||||||
|
:key="option.value" |
||||||
|
:value="option.value" |
||||||
|
:label="option.label" |
||||||
|
/> |
||||||
|
</el-select> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
</el-col> |
||||||
|
<section class="flex gap-20px"> |
||||||
|
<el-button type="primary" plain @click="getData"> |
||||||
|
<Icon icon="ep:search" /> |
||||||
|
查询 |
||||||
|
</el-button> |
||||||
|
<el-button @click="reset"> |
||||||
|
<Icon icon="ep:refresh" /> |
||||||
|
重置 |
||||||
|
</el-button> |
||||||
|
</section> |
||||||
|
</el-row> |
||||||
|
<el-row :gutter="20" justify="space-between"> |
||||||
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" :height="280"> |
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" :height="280"> |
||||||
<el-card shadow="hover" class="mb-8px"> |
<el-card shadow="hover" class="mb-20px"> |
||||||
<template #header> |
<template #header> 任务进度 </template> |
||||||
执法完成率 |
|
||||||
</template> |
|
||||||
<el-skeleton :loading="loading" animated> |
<el-skeleton :loading="loading" animated> |
||||||
<Echart :options="pieOptionsData" :height="280" /> |
<Echart :options="pieOptionsData" :height="338" /> |
||||||
</el-skeleton> |
</el-skeleton> |
||||||
</el-card> |
</el-card> |
||||||
</el-col> |
</el-col> |
||||||
|
|
||||||
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24"> |
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24"> |
||||||
<el-card shadow="hover" class="mb-8px"> |
<el-card shadow="hover"> |
||||||
<template #header> |
<template #header> 执法整改 </template> |
||||||
执法与整改 |
|
||||||
</template> |
|
||||||
<el-skeleton :loading="loading" animated> |
<el-skeleton :loading="loading" animated> |
||||||
<Echart :options="barOptionsData" :height="280" /> |
<Echart :options="barOptionsData" :height="338" /> |
||||||
</el-skeleton> |
</el-skeleton> |
||||||
</el-card> |
</el-card> |
||||||
</el-col> |
</el-col> |
||||||
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24"> |
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24"> |
||||||
<el-card shadow="hover" class="mb-8px"> |
<el-card shadow="hover"> |
||||||
<template #header> |
<template #header> |
||||||
任务与执法 |
<section class="flex justify-between"> |
||||||
|
<span>任务执法</span> |
||||||
|
<span class="color-#A8ABB2 font-normal"> 近6个月走势 </span> |
||||||
|
</section> |
||||||
</template> |
</template> |
||||||
<el-skeleton :loading="loading" animated> |
<el-skeleton :loading="loading" animated> |
||||||
<Echart :options="lineOptions" :height="280" /> |
<Echart :options="lineOptionsData" :height="338" /> |
||||||
</el-skeleton> |
</el-skeleton> |
||||||
</el-card> |
</el-card> |
||||||
</el-col> |
</el-col> |
||||||
</el-row> |
</el-row> |
||||||
<el-row :gutter="8" justify="space-between"> |
<el-row :gutter="20" justify="space-between"> |
||||||
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" class="mb-8px"> |
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" class="mb-20px"> |
||||||
<el-card ref="taskNewCard" shadow="never"> |
<el-card ref="taskNewCard" shadow="never"> |
||||||
<template #header> |
<template #header> 最新任务 </template> |
||||||
最新任务 |
|
||||||
</template> |
|
||||||
<el-skeleton :loading="loading" animated> |
<el-skeleton :loading="loading" animated> |
||||||
<div v-for="(item, index) in tasks" :key="`dynamics-${index}`"> |
<section class="p-24px flex flex-col gap-24px block"> |
||||||
<div> |
<div |
||||||
<div class="text-12px flex justify-between"> |
v-for="(item, index) in tasks" |
||||||
<span>{{ item.title }}</span> |
:key="`dynamics-${index}`" |
||||||
<span class="mr-10">{{ item.user }}</span> |
class="text-15px flex justify-between" |
||||||
<span class="mr-10">{{ item.date }}</span> |
> |
||||||
</div> |
<span class="color-#303133">{{ item.title }}</span> |
||||||
|
<span class="color-#606266">{{ item.deptName }}</span> |
||||||
|
<span class="color-#909399">{{ formatDate(item.startDate, 'YYYY年M月D日') }}</span> |
||||||
</div> |
</div> |
||||||
<el-divider height="10px" class="m-4 p-0" style="margin:8px 0" /> |
<el-empty v-if="tasks.length == 0" /> |
||||||
</div> |
</section> |
||||||
</el-skeleton> |
</el-skeleton> |
||||||
</el-card> |
</el-card> |
||||||
</el-col> |
</el-col> |
||||||
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" class="mb-8px"> |
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24"> |
||||||
<el-card shadow="never"> |
<el-card shadow="never"> |
||||||
<template #header> |
<template #header> 整改排名 </template> |
||||||
逾期排行 |
|
||||||
</template> |
|
||||||
<el-skeleton :loading="loading" animated> |
<el-skeleton :loading="loading" animated> |
||||||
<div v-for="(item, index) in notice2" :key="`dynamics-${index}`"> |
<section class="p-24px flex flex-col gap-24px block"> |
||||||
<template v-if="item.type === '资质逾期'"> |
<div |
||||||
<div> |
v-for="(item, index) in notice1" |
||||||
<div class="text-12px flex justify-between"> |
:key="`dynamics-${index}`" |
||||||
<span>{{ item.title }}</span> |
class="text-15px flex justify-between" |
||||||
<span class="mr-10">{{ item.days }}</span> |
> |
||||||
</div> |
<span class="color-#303133">{{ item.name }}</span> |
||||||
|
<span class="color-#909399">{{ item.count }}次</span> |
||||||
</div> |
</div> |
||||||
<el-divider height="10px" class="m-4 p-0" style="margin:8px 0" /> |
<el-empty v-if="notice1.length == 0" /> |
||||||
</template> |
</section> |
||||||
</div> |
|
||||||
</el-skeleton> |
</el-skeleton> |
||||||
</el-card> |
</el-card> |
||||||
</el-col> |
</el-col> |
||||||
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24" class="mb-8px"> |
<el-col :xl="8" :lg="8" :md="24" :sm="24" :xs="24"> |
||||||
<el-card shadow="never"> |
<el-card shadow="never"> |
||||||
<template #header> |
<template #header> 资质临期 </template> |
||||||
整改排行 |
|
||||||
</template> |
|
||||||
<el-skeleton :loading="loading" animated> |
<el-skeleton :loading="loading" animated> |
||||||
<div v-for="(item, index) in notice2" :key="`dynamics-${index}`"> |
<section class="p-24px flex flex-col gap-24px block"> |
||||||
<template v-if="item.type === '整改次数'"> |
<div |
||||||
|
v-for="(item, index) in notice2" |
||||||
<div> |
:key="`dynamics-${index}`" |
||||||
<div class="text-12px flex justify-between"> |
class="text-15px flex justify-between" |
||||||
<span>{{ item.title }}</span> |
> |
||||||
<span class="mr-10">{{ item.days }}</span> |
<span class="color-#303133">{{ item.name }}</span> |
||||||
</div> |
<span class="color-#909399">{{ item.count }}天</span> |
||||||
|
|
||||||
</div> |
</div> |
||||||
<el-divider height="10px" class="m-4 p-0" style="margin:8px 0" /> |
<el-empty v-if="notice2.length == 0" /> |
||||||
</template> |
</section> |
||||||
</div> |
|
||||||
</el-skeleton> |
</el-skeleton> |
||||||
</el-card> |
</el-card> |
||||||
</el-col> |
</el-col> |
||||||
</el-row> |
</el-row> |
||||||
</template> |
</template> |
||||||
<script lang="ts" setup> |
<script lang="ts" setup> |
||||||
import { set } from 'lodash-es' |
import { HomeApi } from '@/api/home' |
||||||
import { EChartsOption } from 'echarts' |
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' |
||||||
import { pieOptions, barOptions,lineOptions } from './echarts-data' |
import { formatDate } from '@/utils/formatTime' |
||||||
|
|
||||||
defineOptions({ name: 'Home' }) |
defineOptions({ name: 'Home' }) |
||||||
|
|
||||||
const { t } = useI18n() |
|
||||||
const loading = ref(true) |
const loading = ref(true) |
||||||
const pieOptionsData = reactive<EChartsOption>(pieOptions) as EChartsOption |
const pieOptionsData = ref({ |
||||||
|
title: { |
||||||
|
text: '90%', |
||||||
// 监听两个卡片高度变化并保持同步 |
subtext: '完成率', |
||||||
const taskNewCard = ref() |
left: 'center', |
||||||
|
top: 'center', |
||||||
// 使用ResizeObserver监听高度变化 |
itemGap: 0, |
||||||
onMounted(() => { |
textStyle: { |
||||||
}) |
fontSize: 40, |
||||||
|
lineHeight: 40, |
||||||
|
padding: [0, 0, 0, 0], |
||||||
const tasks = reactive<any>([ |
fontWeight: 'bold' |
||||||
{ |
}, |
||||||
title: '义县一公司环保信息', |
subtextStyle: { |
||||||
date: '2023-01-01', |
color: '#909399', |
||||||
user: '张三', |
fontSize: 18, |
||||||
status: 1 |
lineHeight: 18, |
||||||
}, |
padding: [0, 0, 0, 0] |
||||||
{ |
} |
||||||
title: '锦州二公司安全检查', |
|
||||||
date: '2023-01-02', |
|
||||||
user: '李四', |
|
||||||
status: 2 |
|
||||||
}, |
|
||||||
{ |
|
||||||
title: '北镇三公司环评整改', |
|
||||||
date: '2023-01-03', |
|
||||||
user: '王五', |
|
||||||
status: 1 |
|
||||||
}, |
}, |
||||||
{ |
tooltip: { |
||||||
title: '凌海四公司排污监测', |
trigger: 'item', |
||||||
date: '2023-01-04', |
formatter: '{a} <br/>{b} : {c} ({d}%)' |
||||||
user: '赵六', |
|
||||||
status: 3 |
|
||||||
}, |
}, |
||||||
{ |
series: { |
||||||
title: '黑山五公司设备巡检', |
name: '任务进度', |
||||||
date: '2023-01-05', |
type: 'pie', |
||||||
user: '孙七', |
radius: ['60%', '80%'], |
||||||
status: 2 |
center: ['50%', '50%'], |
||||||
|
itemStyle: { |
||||||
|
borderColor: '#fff', |
||||||
|
borderWidth: 2 |
||||||
|
}, |
||||||
|
label: { |
||||||
|
formatter: (v) => { |
||||||
|
if (v.name) { |
||||||
|
return `{row|${v.name}} {v|${v.percent}%} \n{hr|}` |
||||||
|
} |
||||||
|
return '' |
||||||
|
}, |
||||||
|
padding: [0, 0, 15, 0], |
||||||
|
distanceToLabelLine: 0, |
||||||
|
rich: { |
||||||
|
row: { |
||||||
|
padding: [0, 0, 4, 5] |
||||||
|
}, |
||||||
|
v: { |
||||||
|
color: '#409EFF', |
||||||
|
padding: [0, 0, 4, 0] |
||||||
|
}, |
||||||
|
hr: { |
||||||
|
backgroundColor: '#409EFF', |
||||||
|
width: '100%', |
||||||
|
height: 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
labelLine: { |
||||||
|
length2: 0, |
||||||
|
lineStyle: { |
||||||
|
color: '#409EFF' |
||||||
|
} |
||||||
|
}, |
||||||
|
roseType: 'radius', |
||||||
|
data: [ |
||||||
|
{ value: 335, name: '执法一队' }, |
||||||
|
{ value: 310, name: '执法二队' }, |
||||||
|
{ value: 234, name: '执法三队' }, |
||||||
|
{ value: 135, name: '执法四队' }, |
||||||
|
{ value: 1548, name: '执法五队' } |
||||||
|
] |
||||||
|
} |
||||||
|
}) |
||||||
|
const barOptionsData = ref({ |
||||||
|
tooltip: { |
||||||
|
trigger: 'axis', |
||||||
|
axisPointer: { |
||||||
|
type: 'shadow' |
||||||
|
} |
||||||
}, |
}, |
||||||
{ |
grid: { |
||||||
title: '义县六公司安全培训', |
top: 42, |
||||||
date: '2023-01-06', |
left: 16, |
||||||
user: '周八', |
right: 16, |
||||||
status: 1 |
bottom: 16, |
||||||
|
containLabel: true |
||||||
}, |
}, |
||||||
{ |
legend: { |
||||||
title: '大石桥七公司隐患排查', |
show: true, |
||||||
date: '2023-01-07', |
top: 16, |
||||||
user: '吴九', |
left: 'center', |
||||||
status: 3 |
itemWidth: 10, |
||||||
|
itemHeight: 10, |
||||||
|
textStyle: { |
||||||
|
color: '#333' |
||||||
|
} |
||||||
}, |
}, |
||||||
{ |
xAxis: { |
||||||
title: '盘锦八公司应急演练', |
type: 'category', |
||||||
date: '2023-01-08', |
axisTick: { |
||||||
user: '郑十', |
show: false |
||||||
status: 2 |
}, |
||||||
|
axisLine: { |
||||||
|
show: false |
||||||
|
}, |
||||||
|
splitLine: { |
||||||
|
show: true, |
||||||
|
lineStyle: { |
||||||
|
type: 'dashed', |
||||||
|
color: '#E5E7EB' |
||||||
|
} |
||||||
|
}, |
||||||
|
data: [], |
||||||
|
axisLabel: { |
||||||
|
show: true, |
||||||
|
color: '#333' |
||||||
|
} |
||||||
}, |
}, |
||||||
{ |
yAxis: { |
||||||
title: '营口九公司废水处理', |
type: 'value', |
||||||
date: '2023-01-09', |
max: (v) => { |
||||||
user: '钱十一', |
return Math.floor(v.max * 1.2 + 1) |
||||||
status: 1 |
}, |
||||||
|
axisLine: { |
||||||
|
show: false |
||||||
|
}, |
||||||
|
axisTick: { |
||||||
|
show: false |
||||||
|
}, |
||||||
|
splitLine: { |
||||||
|
lineStyle: { |
||||||
|
type: 'dashed', |
||||||
|
color: '#E5E7EB' |
||||||
|
} |
||||||
|
} |
||||||
}, |
}, |
||||||
{ |
series: [ |
||||||
title: '阜新十公司空气监测', |
{ |
||||||
date: '2023-01-10', |
name: '执法记录', |
||||||
user: '刘十二', |
type: 'bar', |
||||||
status: 2 |
barWidth: 20, |
||||||
} |
stack: '执法记录', |
||||||
|
barGap: '30%', |
||||||
|
itemStyle: { |
||||||
|
color: 'rgba(64, 158, 255, .6)' |
||||||
|
}, |
||||||
|
data: [70, 35, 70, 60, 20] |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '整改次数', |
||||||
|
type: 'bar', |
||||||
|
stack: '整改次数', |
||||||
|
barWidth: 20, |
||||||
|
itemStyle: { |
||||||
|
color: 'rgba(103, 194, 58, .6)' |
||||||
|
}, |
||||||
|
data: [90, 45, 80, 50, 70] |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '执法记录', |
||||||
|
type: 'bar', |
||||||
|
barWidth: 20, |
||||||
|
stack: '执法记录', |
||||||
|
barGap: '30%', |
||||||
|
itemStyle: { |
||||||
|
color: 'rgba(64, 158, 255, 1)' |
||||||
|
}, |
||||||
|
tooltip: { |
||||||
|
show: false |
||||||
|
}, |
||||||
|
data: [1, 1, 1, 1, 1] |
||||||
|
}, |
||||||
|
{ |
||||||
|
name: '整改次数', |
||||||
|
type: 'bar', |
||||||
|
stack: '整改次数', |
||||||
|
barWidth: 20, |
||||||
|
itemStyle: { |
||||||
|
color: 'rgba(103, 194, 58, 1)' |
||||||
|
}, |
||||||
|
tooltip: { |
||||||
|
show: false |
||||||
|
}, |
||||||
|
data: [1, 1, 1, 1, 1] |
||||||
|
} |
||||||
|
] |
||||||
|
}) |
||||||
|
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)' |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
}) |
||||||
|
|
||||||
]) |
const queryParams = reactive({ |
||||||
|
selectWeek: '', |
||||||
|
region: '' |
||||||
|
}) |
||||||
|
|
||||||
const notice2 = reactive<any>([ |
const area = ref<any[]>([]) |
||||||
{ |
|
||||||
type: '资质逾期', |
// 监听两个卡片高度变化并保持同步 |
||||||
title: '义县一公司环保信息', |
const taskNewCard = ref() |
||||||
date: '2023-01-01 12:00:00', |
|
||||||
days: '逾期1天' |
const tasks = ref<any>([]) |
||||||
}, |
|
||||||
{ |
const notice1 = ref<any[]>([]) |
||||||
type: '整改次数', |
|
||||||
title: '义县一公司环保信息', |
const notice2 = ref<any[]>([]) |
||||||
date: '2023-01-01 12:00:00', |
|
||||||
days: '整改1次' |
//查询 |
||||||
}, |
const reset = () => { |
||||||
{ |
queryParams.selectWeek = '' |
||||||
type: '资质逾期', |
queryParams.region = area.value[0].value |
||||||
title: '义县一公司环保信息', |
getData() |
||||||
date: '2023-01-01 12:00:00', |
} |
||||||
days: '逾期1天' |
// 完成率 |
||||||
}, |
const getPieData = async () => { |
||||||
{ |
const res = await HomeApi.getPieData(queryParams) |
||||||
type: '整改次数', |
const data = res.completionRate |
||||||
title: '义县一公司环保信息', |
.sort((a, b) => b.value - a.value) |
||||||
date: '2023-01-01 12:00:00', |
.map((item: any, index: number) => { |
||||||
days: '整改1次' |
return { |
||||||
}, |
value: item.pieValue, |
||||||
{ |
name: item.name, |
||||||
type: '资质逾期', |
itemStyle: { |
||||||
title: '义县一公司环保信息', |
color: getGradientColor(index, res.completionRate.length) |
||||||
date: '2023-01-01 12:00:00', |
}, |
||||||
days: '逾期1天' |
label: { |
||||||
}, |
show: item.pieValue > 0 |
||||||
{ |
}, |
||||||
type: '整改次数', |
labelLine: { |
||||||
title: '义县一公司环保信息', |
show: item.pieValue > 0 |
||||||
date: '2023-01-01 12:00:00', |
} |
||||||
days: '整改1次' |
} |
||||||
}, |
}) |
||||||
{ |
|
||||||
type: '资质逾期', |
if (res.taskCompletionRate != 100) { |
||||||
title: '锦州二公司安全检查', |
data.push({ |
||||||
date: '2023-01-02 12:00:00', |
name: '', |
||||||
days: '逾期2天' |
value: 100 - Number(res.taskCompletionRate), |
||||||
}, |
itemStyle: { |
||||||
{ |
color: '#fff' |
||||||
type: '整改次数', |
}, |
||||||
title: '锦州二公司安全检查', |
label: { |
||||||
date: '2023-01-02 12:00:00', |
show: false |
||||||
days: '整改2次' |
}, |
||||||
}, |
labelLine: { |
||||||
{ |
show: false |
||||||
type: '资质逾期', |
} |
||||||
title: '北镇三公司环评整改', |
}) |
||||||
date: '2023-01-03 12:00:00', |
|
||||||
days: '逾期3天' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '整改次数', |
|
||||||
title: '北镇三公司环评整改', |
|
||||||
date: '2023-01-03 12:00:00', |
|
||||||
days: '整改3次' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '资质逾期', |
|
||||||
title: '凌海四公司排污监测', |
|
||||||
date: '2023-01-04 12:00:00', |
|
||||||
days: '逾期4天' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '整改次数', |
|
||||||
title: '凌海四公司排污监测', |
|
||||||
date: '2023-01-04 12:00:00', |
|
||||||
days: '整改4次' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '资质逾期', |
|
||||||
title: '黑山五公司设备巡检', |
|
||||||
date: '2023-01-05 12:00:00', |
|
||||||
days: '逾期5天' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '整改次数', |
|
||||||
title: '黑山五公司设备巡检', |
|
||||||
date: '2023-01-05 12:00:00', |
|
||||||
days: '整改5次' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '资质逾期', |
|
||||||
title: '义县六公司安全培训', |
|
||||||
date: '2023-01-06 12:00:00', |
|
||||||
days: '逾期6天' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '整改次数', |
|
||||||
title: '义县六公司安全培训', |
|
||||||
date: '2023-01-06 12:00:00', |
|
||||||
days: '整改6次' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '资质逾期', |
|
||||||
title: '大石桥七公司隐患排查', |
|
||||||
date: '2023-01-07 12:00:00', |
|
||||||
days: '逾期7天' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '整改次数', |
|
||||||
title: '大石桥七公司隐患排查', |
|
||||||
date: '2023-01-07 12:00:00', |
|
||||||
days: '整改7次' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '资质逾期', |
|
||||||
title: '盘锦八公司应急演练', |
|
||||||
date: '2023-01-08 12:00:00', |
|
||||||
days: '逾期8天' |
|
||||||
}, |
|
||||||
{ |
|
||||||
type: '整改次数', |
|
||||||
title: '盘锦八公司应急演练', |
|
||||||
date: '2023-01-08 12:00:00', |
|
||||||
days: '整改8次' |
|
||||||
} |
} |
||||||
]) |
|
||||||
|
|
||||||
|
pieOptionsData.value.title.text = `${res.taskCompletionRate}%` |
||||||
|
pieOptionsData.value.series.data = data |
||||||
|
} |
||||||
|
|
||||||
// 用户来源 |
// 近6个月执法走势 |
||||||
const getUserAccessSource = async () => { |
const getS3Data = async () => { |
||||||
const data = [ |
const res = await HomeApi.getTaskNumDoing(queryParams) |
||||||
{ value: 335, name: '执法一队' }, |
let data1 = [] as any |
||||||
{ value: 310, name: '执法二队' }, |
let data2 = [] as any |
||||||
{ value: 234, name: '执法三队' }, |
res.forEach((item: any) => { |
||||||
{ value: 135, name: '执法四队' }, |
data1.push({ name: item.month, value: item.taskCount }) |
||||||
{ value: 1548, name: '执法五队' } |
data2.push({ name: item.month, value: item.inspectionCount }) |
||||||
] |
}) |
||||||
set( |
lineOptionsData.value.series[0].data = data1 |
||||||
pieOptionsData, |
lineOptionsData.value.series[1].data = data2 |
||||||
'legend.data', |
lineOptionsData.value.xAxis.data = res.map((i) => i.month) |
||||||
data.map((v) => t(v.name)) |
} |
||||||
) |
|
||||||
pieOptionsData!.series![0].data = data.map((v) => { |
// 执法整改 |
||||||
|
const getS2Data = async () => { |
||||||
|
const res = await HomeApi.getExecCorrection(queryParams) |
||||||
|
const data1 = res.map((i) => { |
||||||
return { |
return { |
||||||
name: t(v.name), |
name: i.realName, |
||||||
value: v.value |
value: i.inspectionCount |
||||||
} |
} |
||||||
}) |
}) |
||||||
|
const data2 = res.map((i) => { |
||||||
|
return { |
||||||
|
name: i.realName, |
||||||
|
value: i.correctionCount |
||||||
|
} |
||||||
|
}) |
||||||
|
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) |
||||||
} |
} |
||||||
const barOptionsData = reactive<EChartsOption>(barOptions) as EChartsOption |
|
||||||
|
|
||||||
// 周活跃量 |
// 获取最新任务 |
||||||
const getWeeklyUserActivity = async () => { |
const getS4Data = async () => { |
||||||
const data = [ |
const res = await HomeApi.getNewTask({ ...queryParams, pageSize: 8, pageNo: 1 }) |
||||||
{ value: 325, name: '一月' }, |
tasks.value = res.list |
||||||
{ value: 423, name: '二月' }, |
} |
||||||
{ value: 632, name: '三月' }, |
|
||||||
{ value: 234, name: '四月' }, |
// 整改排名、资质临期 |
||||||
{ value: 464, name: '五月' }, |
const getS5S6 = async () => { |
||||||
{ value: 322, name: '六月' }, |
notice2.value = await HomeApi.getListData({ ...queryParams, type: 1, size: 8 }) |
||||||
{ value: 324, name: '七月' } |
notice1.value = await HomeApi.getListData({ ...queryParams, type: 2, size: 8 }) |
||||||
] |
} |
||||||
set( |
|
||||||
barOptionsData, |
// 区域下拉框 |
||||||
'xAxis.data', |
const getArea = async () => { |
||||||
data.map((v) => t(v.name)) |
area.value = await HomeApi.getArea() |
||||||
) |
queryParams.region = area.value[0].value |
||||||
set(barOptionsData, 'series', [ |
|
||||||
{ |
|
||||||
name: '任务数', |
|
||||||
data: data.map((v) => v.value), |
|
||||||
type: 'bar' |
|
||||||
} |
|
||||||
]) |
|
||||||
} |
} |
||||||
|
|
||||||
const getAllApi = async () => { |
const init = async () => { |
||||||
await Promise.all([ |
await getArea() |
||||||
getUserAccessSource(), |
await getData() |
||||||
getWeeklyUserActivity() |
} |
||||||
]) |
|
||||||
|
// 获取数据 |
||||||
|
const getData = async () => { |
||||||
|
await Promise.all([getPieData(), getS2Data(), getS3Data(), getS4Data(), getS5S6()]) |
||||||
loading.value = false |
loading.value = false |
||||||
} |
} |
||||||
|
|
||||||
getAllApi() |
// 饼图颜色 |
||||||
|
const getGradientColor = (index, total) => { |
||||||
|
let opacity = 1 - index / total + 0.1 |
||||||
|
if (index == 0) opacity = 1 |
||||||
|
return `rgba(64, 158, 255, ${opacity > 1 ? 1 : opacity})` |
||||||
|
} |
||||||
|
|
||||||
|
init() |
||||||
</script> |
</script> |
||||||
|
|
||||||
|
<style scoped lang="scss"> |
||||||
|
::v-deep(.el-card__header) { |
||||||
|
padding: 16px; |
||||||
|
color: #303133; |
||||||
|
font-size: 14px; |
||||||
|
line-height: 24px; |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
::v-deep(.el-card__body) { |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.block { |
||||||
|
height: 376px; |
||||||
|
} |
||||||
|
.queryForm { |
||||||
|
display: flex; |
||||||
|
flex-flow: row nowrap; |
||||||
|
.el-form-item--default { |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
.el-form-item { |
||||||
|
width: 400px; |
||||||
|
margin-right: 20px; |
||||||
|
display: flex; |
||||||
|
flex-flow: row nowrap; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
} |
||||||
|
::v-deep(.el-button + .el-button) { |
||||||
|
margin-left: 0 !important; |
||||||
|
} |
||||||
|
</style> |
||||||
|
@ -1,148 +0,0 @@ |
|||||||
import { EChartsOption } from 'echarts' |
|
||||||
|
|
||||||
const { t } = useI18n() |
|
||||||
|
|
||||||
|
|
||||||
export const pieOptions: EChartsOption = { |
|
||||||
title: { |
|
||||||
text: '完成率90%', |
|
||||||
left: 'center', |
|
||||||
top: '35%', |
|
||||||
textStyle: { |
|
||||||
fontSize: 16, |
|
||||||
fontWeight: 'bold' |
|
||||||
} |
|
||||||
}, |
|
||||||
tooltip: { |
|
||||||
trigger: 'item', |
|
||||||
formatter: '{a} <br/>{b} : {c} ({d}%)' |
|
||||||
}, |
|
||||||
legend: { |
|
||||||
orient: 'horizontal', |
|
||||||
bottom: 10, |
|
||||||
left: 'center', |
|
||||||
|
|
||||||
data: [ |
|
||||||
'执法一队', |
|
||||||
'执法二队', |
|
||||||
'执法三队', |
|
||||||
'执法四队', |
|
||||||
'执法五队', |
|
||||||
] |
|
||||||
}, |
|
||||||
series: [ |
|
||||||
{ |
|
||||||
name: t('analysis.userAccessSource'), |
|
||||||
type: 'pie', |
|
||||||
radius: ['40%', '70%'], |
|
||||||
center: ['50%', '40%'], |
|
||||||
itemStyle: { |
|
||||||
borderRadius: 10, |
|
||||||
borderColor: '#fff', |
|
||||||
borderWidth: 2 |
|
||||||
}, |
|
||||||
data: [ |
|
||||||
{ value: 335, name: '执法一队' }, |
|
||||||
{ value: 310, name: '执法二队' }, |
|
||||||
{ value: 234, name:'执法三队' }, |
|
||||||
{ value: 135, name: '执法四队' }, |
|
||||||
{ value: 1548, name: '执法五队' } |
|
||||||
] |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
|
|
||||||
export const barOptions: EChartsOption = { |
|
||||||
title: { |
|
||||||
text: '月均执法任务数', |
|
||||||
left: 'center' |
|
||||||
}, |
|
||||||
tooltip: { |
|
||||||
trigger: 'axis', |
|
||||||
axisPointer: { |
|
||||||
type: 'shadow' |
|
||||||
} |
|
||||||
}, |
|
||||||
grid: { |
|
||||||
left: 50, |
|
||||||
right: 20, |
|
||||||
bottom: 20 |
|
||||||
}, |
|
||||||
xAxis: { |
|
||||||
type: 'category', |
|
||||||
data: [ |
|
||||||
'一月', |
|
||||||
'二月', |
|
||||||
'三月', |
|
||||||
'四月', |
|
||||||
'五月', |
|
||||||
'六月', |
|
||||||
|
|
||||||
], |
|
||||||
axisTick: { |
|
||||||
alignWithLabel: true |
|
||||||
} |
|
||||||
}, |
|
||||||
yAxis: { |
|
||||||
type: 'value' |
|
||||||
}, |
|
||||||
series: [ |
|
||||||
{ |
|
||||||
name: t('analysis.activeQuantity'), |
|
||||||
data: [13253, 34235, 26321, 12340, 24643, 1322, 1324], |
|
||||||
type: 'bar' |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
|
|
||||||
export const lineOptions: EChartsOption = { |
|
||||||
title: { |
|
||||||
text: '月均执法任务数', |
|
||||||
left: 'center' |
|
||||||
}, |
|
||||||
tooltip: { |
|
||||||
trigger: 'axis', |
|
||||||
axisPointer: { |
|
||||||
type: 'shadow' |
|
||||||
} |
|
||||||
}, |
|
||||||
grid: { |
|
||||||
left: 50, |
|
||||||
right: 20, |
|
||||||
bottom: 20 |
|
||||||
}, |
|
||||||
xAxis: { |
|
||||||
type: 'category', |
|
||||||
data: [ |
|
||||||
'一月', |
|
||||||
'二月', |
|
||||||
'三月', |
|
||||||
'四月', |
|
||||||
'五月', |
|
||||||
'六月', |
|
||||||
|
|
||||||
], |
|
||||||
axisTick: { |
|
||||||
alignWithLabel: true |
|
||||||
} |
|
||||||
}, |
|
||||||
yAxis: { |
|
||||||
type: 'value' |
|
||||||
}, |
|
||||||
series: [ |
|
||||||
{ |
|
||||||
name: '任务数', |
|
||||||
data: [13253, 34235, 26321, 12340, 24643, 1322, 1324], |
|
||||||
type: 'line' |
|
||||||
}, |
|
||||||
{ |
|
||||||
name: '执法数', |
|
||||||
data: [15678, 28943, 31452, 19876, 22345, 25678, 18234], |
|
||||||
type: 'line' |
|
||||||
} |
|
||||||
|
|
||||||
] |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,50 +0,0 @@ |
|||||||
export type WorkplaceTotal = { |
|
||||||
project: number |
|
||||||
access: number |
|
||||||
todo: number |
|
||||||
} |
|
||||||
|
|
||||||
export type Project = { |
|
||||||
name: string |
|
||||||
icon: string |
|
||||||
message: string |
|
||||||
personal: string |
|
||||||
time: Date | number | string |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export type Shortcut = { |
|
||||||
name: string |
|
||||||
icon: string |
|
||||||
url: string |
|
||||||
} |
|
||||||
|
|
||||||
export type RadarData = { |
|
||||||
personal: number |
|
||||||
team: number |
|
||||||
max: number |
|
||||||
name: string |
|
||||||
} |
|
||||||
export type AnalysisTotalTypes = { |
|
||||||
users: number |
|
||||||
messages: number |
|
||||||
moneys: number |
|
||||||
shoppings: number |
|
||||||
} |
|
||||||
|
|
||||||
export type UserAccessSource = { |
|
||||||
value: number |
|
||||||
name: string |
|
||||||
} |
|
||||||
|
|
||||||
export type WeeklyUserActivity = { |
|
||||||
value: number |
|
||||||
name: string |
|
||||||
} |
|
||||||
|
|
||||||
export type MonthlySales = { |
|
||||||
name: string |
|
||||||
estimate: number |
|
||||||
actual: number |
|
||||||
} |
|
Loading…
Reference in new issue