diff --git a/src/api/home/index.ts b/src/api/home/index.ts new file mode 100644 index 0000000..0a0994c --- /dev/null +++ b/src/api/home/index.ts @@ -0,0 +1,38 @@ +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:()=>{ + return request.get({ + url: '/system/home/taskNumDoing' + }) + } +} diff --git a/src/layout/components/AppView.vue b/src/layout/components/AppView.vue index df720a1..f819275 100644 --- a/src/layout/components/AppView.vue +++ b/src/layout/components/AppView.vue @@ -36,7 +36,7 @@ provide('reload', reload) - + diff --git a/src/layout/components/ToolHeader.vue b/src/layout/components/ToolHeader.vue index c109bfb..62ac142 100644 --- a/src/layout/components/ToolHeader.vue +++ b/src/layout/components/ToolHeader.vue @@ -65,9 +65,6 @@ export default defineComponent({ color="var(--top-header-text-color)" > ) : undefined} - {message.value ? ( - - ) : undefined} diff --git a/src/layout/components/UserInfo/src/UserInfo.vue b/src/layout/components/UserInfo/src/UserInfo.vue index 4945567..1bad1cf 100644 --- a/src/layout/components/UserInfo/src/UserInfo.vue +++ b/src/layout/components/UserInfo/src/UserInfo.vue @@ -24,7 +24,6 @@ const { getPrefixCls } = useDesign() const prefixCls = getPrefixCls('user-info') const avatar = computed(() => userStore.user.avatar || avatarImg) -const userName = computed(() => userStore.user.nickname ?? 'Admin') const realName=computed(()=>userStore.user.realName ?? '管理员') // 锁定屏幕 const lockStore = useLockStore() @@ -58,8 +57,8 @@ const toDocument = () => { - - {{ realName }} + + {{ realName }}|{{}} diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index c3a0e32..d4e7744 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -63,7 +63,7 @@ const remainingRouter: AppRouteRecordRaw[] = [ name: 'Index', meta: { title: '驾驶舱', - icon: 'ep:home-filled', + icon: 'ep:pie-chart', noCache: false, affix: true } diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index cd4e18d..ee045fa 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -62,7 +62,7 @@ export const useAppStore = defineStore('app', { tagsViewIcon: false, // 是否显示标签图标 logo: true, // logo fixedHeader: true, // 固定toolheader - footer: true, // 显示页脚 + footer: false, // 显示页脚 greyMode: false, // 是否开始灰色模式,用于特殊悼念日 fixedMenu: wsCache.get('fixedMenu') || false, // 是否固定菜单 layout: wsCache.get(CACHE_KEY.LAYOUT) || 'classic', // layout布局 diff --git a/src/styles/var.css b/src/styles/var.css index de6820d..54874e3 100644 --- a/src/styles/var.css +++ b/src/styles/var.css @@ -47,7 +47,7 @@ --app-content-padding: 20px; - --app-content-bg-color: #f5f7f9; + --app-content-bg-color: #f5f7fa; --app-footer-height: 50px; diff --git a/src/utils/dict.ts b/src/utils/dict.ts index c8d323f..22bec5a 100644 --- a/src/utils/dict.ts +++ b/src/utils/dict.ts @@ -118,6 +118,8 @@ export enum DICT_TYPE { ENTERPRISES_STATUS = 'enterprises_status', //========== 资质 ========== ENTERPRISES_QUA = 'enterprise_qua', + //========== 任务 ========== + SELECT_WEEK = 'select_week', // ========== SYSTEM 模块 ========== SYSTEM_USER_SEX = 'system_user_sex', diff --git a/src/views/Home/Index.vue b/src/views/Home/Index.vue index c8c0d47..ad27ca3 100644 --- a/src/views/Home/Index.vue +++ b/src/views/Home/Index.vue @@ -1,98 +1,126 @@ - + + + + + + + + + + + + + + + + + + + 查询 + + + + 重置 + + + + - - - 执法完成率 - + + 任务进度 - + - - - - 执法与整改 - + + 执法整改 - + - + - 任务与执法 + + 任务执法 + 近6个月走势 + - + - - + + - - 最新任务 - + 最新任务 - - - - {{ item.title }} - {{ item.user }} - {{ item.date }} - - + + + {{ item.title }} + {{ item.user }} + {{ item.date }} - - + - + - - 逾期排行 - + 整改排名 - - - - - {{ item.title }} - {{ item.days }} - - - - - - + + + {{ item.name }} + {{ item.count }}次 + + - + - - 整改排行 - + 资质临期 - - - - - - {{ item.title }} - {{ item.days }} - - + + + {{ item.name }} + {{ item.count }}天 - - - + @@ -101,23 +129,27 @@ + + diff --git a/src/views/Home/echarts-data.ts b/src/views/Home/echarts-data.ts index fa78b2b..13e0ca7 100644 --- a/src/views/Home/echarts-data.ts +++ b/src/views/Home/echarts-data.ts @@ -1,62 +1,81 @@ import { EChartsOption } from 'echarts' -const { t } = useI18n() export const pieOptions: EChartsOption = { title: { - text: '完成率90%', + text: '90%', + subtext: '完成率', left: 'center', - top: '35%', + top: 'center', + itemGap: 0, textStyle: { - fontSize: 16, + fontSize: 40, + lineHeight: 40, + padding: [0, 0, 0, 0], fontWeight: 'bold' + }, + subtextStyle: { + color: '#909399', + fontSize: 18, + lineHeight: 18, + padding: [0, 0, 0, 0] } }, tooltip: { trigger: 'item', formatter: '{a} {b} : {c} ({d}%)' }, - legend: { - orient: 'horizontal', - bottom: 10, - left: 'center', - + series: { + type: 'pie', + radius: ['60%', '80%'], + 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: '执法五队' } ] - }, - 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: { @@ -64,42 +83,113 @@ export const barOptions: EChartsOption = { } }, grid: { - left: 50, - right: 20, - bottom: 20 + top: 42, + left: 16, + right: 16, + bottom: 16, + containLabel: true + }, + legend: { + show: true, + top: 16, + left: 'center', + itemWidth: 10, + itemHeight: 10, + textStyle: { + color: '#333' + } }, xAxis: { type: 'category', - data: [ - '一月', - '二月', - '三月', - '四月', - '五月', - '六月', - - ], axisTick: { - alignWithLabel: true + show: false + }, + axisLine: { + show: false + }, + splitLine: { + show: true, + lineStyle: { + type: 'dashed', + color: '#E5E7EB' + } + }, + axisLabel: { + show: true, + color: '#333' } }, yAxis: { - type: 'value' + type: 'value', + max: (v) => { + return Math.floor(v.max * 1.2 + 1) + }, + axisLine: { + show: false + }, + axisTick: { + show: false + }, + splitLine: { + lineStyle: { + type: 'dashed', + color: '#E5E7EB' + } + } }, series: [ { - name: t('analysis.activeQuantity'), - data: [13253, 34235, 26321, 12340, 24643, 1322, 1324], - type: 'bar' + name: '执法记录', + type: 'bar', + 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: [2, 2, 2, 2, 2] + }, + { + name: '整改次数', + type: 'bar', + stack: '整改次数', + barWidth: 20, + itemStyle: { + color: 'rgba(103, 194, 58, 1)' + }, + tooltip: { + show: false + }, + data: [2, 2, 2, 2, 2] } ] } export const lineOptions: EChartsOption = { - title: { - text: '月均执法任务数', - left: 'center' - }, tooltip: { trigger: 'axis', axisPointer: { @@ -107,42 +197,89 @@ export const lineOptions: EChartsOption = { } }, grid: { - left: 50, - right: 20, - bottom: 20 + top: 42, + left: 16, + right: 16, + bottom: 16, + containLabel: true + }, + legend: { + show: true, + top: 16, + left: 'center', + textStyle: { + color: '#333' + } }, xAxis: { type: 'category', - data: [ - '一月', - '二月', - '三月', - '四月', - '五月', - '六月', - - ], + data:[], axisTick: { - alignWithLabel: true + show: false + }, + axisLine: { + show: false + }, + splitLine: { + show: true, + lineStyle: { + type: 'dashed', + color: '#E5E7EB' + } + }, + axisLabel: { + show: false, + color: '#333' } }, yAxis: { - type: 'value' + 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, 1322, 1324], - type: 'line' + 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, 25678, 18234], - type: 'line' + 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)' + } } - ] } - - -