态势感知平台-武汉市开源生态建设-2025武汉优秀开源项目接口对接

This commit is contained in:
d266377
2026-02-04 09:51:45 +08:00
parent 1aaefae7e8
commit 46eb668c31

View File

@@ -311,7 +311,7 @@ import * as echarts from 'echarts';
import { usePageResize } from '@/utils/hooks/usePageResize';
import StatsBar from './components/StatsBar.vue';
import HarmonyEcoCharts from './components/HarmonyEcoCharts.vue';
import { wuhanGithubProjectsPage3, cityProjectPage3, chinaExcellentProjectsPage3 } from '@/api/jyh/situation';
import { wuhanGithubProjectsPage3, cityProjectPage3, chinaExcellentProjectsPage3, excellentProjectsPage3 } from '@/api/jyh/situation';
const { widthType } = usePageResize();
@@ -425,20 +425,10 @@ const fetchCityProjectData = async() => {
const activeTab = ref(0);
const excellentProjects = ref([
{ 'name': '调问DWSurvey', 'desc': '开源问卷表单系统', 'org': '极推科技' },
{ 'name': 'Eova', 'desc': '低代码开发平台', 'org': '武汉简码' },
{ 'name': 'ClickVisual', 'desc': '可视化日志分析告警平台', 'org': '武汉初心' },
{ 'name': 'Meta2d.js', 'desc': '2D图元可视化引擎', 'org': '乐吾乐科技' },
{ 'name': 'Juno', 'desc': '分布式微服务管理系统', 'org': '武汉斗鱼' },
{ 'name': 'Opentalent', 'desc': '开源人才评价系统', 'org': '湖北大学' },
{ 'name': 'Fountain', 'desc': '仓颉语言版 Spring 框架替代', 'org': '江汉大学' },
{ 'name': 'deepin', 'desc': '深度桌面操作系统', 'org': '深之度' },
{ 'name': 'RustSBI', 'desc': 'RISC-V 安全引导程序', 'org': '华中科技大学' },
{ 'name': 'NextDenovo', 'desc': '长读长序列组装工具', 'org': '武汉希望组' }
]);
const excellentProjects = ref([]);
const chinaExcellentProjects = ref([]);
// 2024武汉优秀开源项目备用数据
const chinaExcellentProjectsdata = () => {
chinaExcellentProjects.value = [
@@ -495,6 +485,22 @@ const chinaExcellentProjectsdata = () => {
];
};
// 2025武汉优秀开源项目备用数据
const excellentProjectsdata = () => {
excellentProjects.value = [
{ 'name': '调问DWSurvey', 'desc': '开源问卷表单系统', 'org': '极推科技' },
{ 'name': 'Eova', 'desc': '低代码开发平台', 'org': '武汉简码' },
{ 'name': 'ClickVisual', 'desc': '可视化日志分析告警平台', 'org': '武汉初心' },
{ 'name': 'Meta2d.js', 'desc': '2D图元可视化引擎', 'org': '乐吾乐科技' },
{ 'name': 'Juno', 'desc': '分布式微服务管理系统', 'org': '武汉斗鱼' },
{ 'name': 'Opentalent', 'desc': '开源人才评价系统', 'org': '湖北大学' },
{ 'name': 'Fountain', 'desc': '仓颉语言版 Spring 框架替代', 'org': '江汉大学' },
{ 'name': 'deepin', 'desc': '深度桌面操作系统', 'org': '深之度' },
{ 'name': 'RustSBI', 'desc': 'RISC-V 安全引导程序', 'org': '华中科技大学' },
{ 'name': 'NextDenovo', 'desc': '长读长序列组装工具', 'org': '武汉希望组' }
];
};
const fetchchinaExcellentProjects = async() => {
try {
const response = await chinaExcellentProjectsPage3();
@@ -511,6 +517,22 @@ const fetchchinaExcellentProjects = async() => {
}
};
const fetchexcellentProjects = async() => {
try {
const response = await excellentProjectsPage3();
const projectdata = response.data;
if (projectdata?.code === 200 && projectdata?.data) {
excellentProjects.value = projectdata.data;
} else {
console.error('获取2025武汉优秀开源项目数据失败:', projectdata?.msg || '未知错误');
excellentProjectsdata();
}
} catch (error) {
console.error('请求2025武汉优秀开源项目数据时发生错误:', error);
excellentProjectsdata();
}
};
const wuhanCommunities = ref([
{ name: '黄鹤开源社区', type: '核心生态', slogan: '国家级、城市级开源社区平台,武汉开源生态的核心枢纽' },
{ name: '深度社区 (Deepin)', type: '操作系统', slogan: '全球最大桌面操作系统社区之一,全球用户超过 750 万' },
@@ -850,6 +872,7 @@ onMounted(async() => {
await fetchGithubProjects();
await fetchCityProjectData(); // 获取城市项目数据
await fetchchinaExcellentProjects(); // 获取2024中国优秀开源项目数据
await fetchexcellentProjects(); // 获取2025武汉优秀开源项目数据
init(); // 再初始化图表
});