You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// 研学活动相关接口
|
|
|
|
|
|
const api = {
|
|
|
// 首页&分类-查询研学活动列表
|
|
|
queryActivityList: {
|
|
|
url: '/activity/queryActivityList',
|
|
|
method: 'GET',
|
|
|
},
|
|
|
// 首页&分类-查询研学活动详情
|
|
|
queryActivityById: {
|
|
|
url: '/activity/queryActivityById',
|
|
|
method: 'GET',
|
|
|
},
|
|
|
// 首页&分类-查询我收藏的研学活动列表
|
|
|
queryCollectionActivityList: {
|
|
|
url: '/activity/queryCollectionActivityList',
|
|
|
method: 'GET',
|
|
|
},
|
|
|
// 首页&分类-收藏研学活动
|
|
|
collectionActivity: {
|
|
|
url: '/activity/collectionActivity',
|
|
|
method: 'GET',
|
|
|
},
|
|
|
}
|
|
|
|
|
|
export default api
|