diff --git a/src/api/jyh/index.ts b/src/api/jyh/index.ts index c1eb934..41e7237 100644 --- a/src/api/jyh/index.ts +++ b/src/api/jyh/index.ts @@ -148,6 +148,18 @@ export const dependencyTree = (softwareId: any): Promise => { }) ); }; +// 获取开发者社区信息 +export const communityInfo = (softwareId: any): Promise => { + return reqCatchV2(() => + request({ + url: `/api/v1/repo/community/info`, + method: 'POST', + data: { + softwareId + } + }) + ); +}; // 编辑用户信息(包含订阅默认预警方式) export const userEdit = (data: any): Promise => { diff --git a/src/components/ChartLine/index.vue b/src/components/ChartLine/index.vue index ccccbde..fffa54f 100644 --- a/src/components/ChartLine/index.vue +++ b/src/components/ChartLine/index.vue @@ -1,5 +1,5 @@ -