mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-24 02:16:36 +08:00
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import type { AnnouncementLogDto } from './types';
|
|
import { get } from '@/utils/request';
|
|
|
|
/**
|
|
* 获取系统公告和活动数据
|
|
* 后端接口: GET /api/app/announcement
|
|
* 返回格式: AnnouncementLogDto[]
|
|
*/
|
|
export function getSystemAnnouncements() {
|
|
return get<AnnouncementLogDto[]>('/announcement').json();
|
|
}
|
|
export * from './types';
|