| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <template>
- <div>1111</div>
- </template>
- <script lang="ts" setup>
- import { set } from 'lodash-es'
- import { EChartsOption } from 'echarts'
- import { formatTime } from '@/utils'
- import { useUserStore } from '@/store/modules/user'
- // import { useWatermark } from '@/hooks/web/useWatermark'
- import type { WorkplaceTotal, Project, Notice, Shortcut } from './types'
- import { pieOptions, barOptions } from './echarts-data'
- import { useRouter } from 'vue-router'
- defineOptions({ name: 'Index' })
- const { t } = useI18n()
- const router = useRouter()
- const userStore = useUserStore()
- // const { setWatermark } = useWatermark()
- const loading = ref(true)
- const avatar = userStore.getUser.avatar
- const username = userStore.getUser.nickname
- const pieOptionsData = reactive<EChartsOption>(pieOptions) as EChartsOption
- // 获取统计数
- let totalSate = reactive<WorkplaceTotal>({
- project: 0,
- access: 0,
- todo: 0
- })
- const getCount = async () => {
- const data = {
- project: 40,
- access: 2340,
- todo: 10
- }
- totalSate = Object.assign(totalSate, data)
- }
- // 获取项目数
- let projects = reactive<Project[]>([])
- const getProject = async () => {
- const data = [
- {
- name: 'ruoyi-vue-pro',
- icon: 'simple-icons:springboot',
- message: 'github.com/YunaiV/ruoyi-vue-pro',
- personal: 'Spring Boot 单体架构',
- time: new Date('2025-01-02'),
- color: '#6DB33F'
- },
- {
- name: 'yudao-ui-admin-vue3',
- icon: 'ep:element-plus',
- message: 'github.com/yudaocode/yudao-ui-admin-vue3',
- personal: 'Vue3 + element-plus 管理后台',
- time: new Date('2025-02-03'),
- color: '#409EFF'
- },
- {
- name: 'yudao-ui-mall-uniapp',
- icon: 'icon-park-outline:mall-bag',
- message: 'github.com/yudaocode/yudao-ui-mall-uniapp',
- personal: 'Vue3 + uniapp 商城手机端',
- time: new Date('2025-03-04'),
- color: '#ff4d4f'
- },
- {
- name: 'yudao-cloud',
- icon: 'material-symbols:cloud-outline',
- message: 'github.com/YunaiV/yudao-cloud',
- personal: 'Spring Cloud 微服务架构',
- time: new Date('2025-04-05'),
- color: '#1890ff'
- },
- {
- name: 'yudao-ui-admin-vben',
- icon: 'devicon:antdesign',
- message: 'github.com/yudaocode/yudao-ui-admin-vben',
- personal: 'Vue3 + vben5(antd) 管理后台',
- time: new Date('2025-05-06'),
- color: '#e18525'
- },
- {
- name: 'yudao-ui-admin-uniapp',
- icon: 'ant-design:mobile',
- message: 'github.com/yudaocode/yudao-ui-admin-uniapp',
- personal: 'Vue3 + uniapp 管理手机端',
- time: new Date('2025-06-01'),
- color: '#2979ff'
- }
- ]
- projects = Object.assign(projects, data)
- }
- // 获取通知公告
- let notice = reactive<Notice[]>([])
- const getNotice = async () => {
- const data = [
- {
- title: '系统支持 JDK 8/17/21,Vue 2/3',
- type: '技术兼容性',
- keys: ['JDK', 'Vue'],
- date: new Date()
- },
- {
- title: '后端提供 Spring Boot 2.7/3.2 + Cloud 双架构',
- type: '架构灵活性',
- keys: ['Boot', 'Cloud'],
- date: new Date()
- },
- {
- title: '个人与企业可 100% 直接使用,无需授权',
- type: '免授权',
- keys: ['无需授权'],
- date: new Date()
- },
- {
- title: '国内使用最广泛的快速开发平台,远超 10w+ 企业使用',
- type: '广泛企业认可',
- keys: ['最广泛', '10w+'],
- date: new Date()
- }
- ]
- notice = Object.assign(notice, data)
- }
- // 获取快捷入口
- // 用户来源
- const getUserAccessSource = async () => {
- const data = [
- { value: 335, name: 'analysis.directAccess' },
- { value: 310, name: 'analysis.mailMarketing' },
- { value: 234, name: 'analysis.allianceAdvertising' },
- { value: 135, name: 'analysis.videoAdvertising' },
- { value: 1548, name: 'analysis.searchEngines' }
- ]
- set(
- pieOptionsData,
- 'legend.data',
- data.map((v) => t(v.name))
- )
- pieOptionsData!.series![0].data = data.map((v) => {
- return {
- name: t(v.name),
- value: v.value
- }
- })
- }
- const barOptionsData = reactive<EChartsOption>(barOptions) as EChartsOption
- // 周活跃量
- const getWeeklyUserActivity = async () => {
- const data = [
- { value: 13253, name: 'analysis.monday' },
- { value: 34235, name: 'analysis.tuesday' },
- { value: 26321, name: 'analysis.wednesday' },
- { value: 12340, name: 'analysis.thursday' },
- { value: 24643, name: 'analysis.friday' },
- { value: 1322, name: 'analysis.saturday' },
- { value: 1324, name: 'analysis.sunday' }
- ]
- set(
- barOptionsData,
- 'xAxis.data',
- data.map((v) => t(v.name))
- )
- set(barOptionsData, 'series', [
- {
- name: t('analysis.activeQuantity'),
- data: data.map((v) => v.value),
- type: 'bar'
- }
- ])
- }
- const getAllApi = async () => {
- await Promise.all([
- getCount(),
- getProject(),
- getNotice(),
- getShortcut(),
- getUserAccessSource(),
- getWeeklyUserActivity()
- ])
- loading.value = false
- }
- const handleProjectClick = (message: string) => {
- window.open(`https://${message}`, '_blank')
- }
- const handleShortcutClick = (url: string) => {
- router.push(url)
- }
- getAllApi()
- </script>
|