blob: 0b2f802c98382c82bec26cb64ee101c6317f22b3 [file] [log] [blame]
import axios from 'axios';
const BASE_URL = 'http://localhost:8080/activity';
// 获取所有 is_show == 0 的活动预览(只含标题和图片)
export const getActivityPreviews = () => {
return axios.get(`${BASE_URL}/preview`);
};
// 获取所有 is_show == 0 的完整活动信息
export const getFullActivities = () => {
return axios.get(`${BASE_URL}/full`);
};