鸿宇研学生前端代码
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.
 
 
 

18 lines
328 B

// 开营通知相关接口
const api = {
// 开营通知-查询开营通知列表
queryNoticeList: {
url: '/notice/queryNoticeList',
method: 'GET',
auth: true,
},
// 开营通知-查询开营通知详情
queryNoticeById: {
url: '/notice/queryNoticeById',
method: 'GET',
auth: true,
},
}
export default api