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

17 lines
328 B

  1. // 开营通知相关接口
  2. const api = {
  3. // 开营通知-查询开营通知列表
  4. queryNoticeList: {
  5. url: '/notice/queryNoticeList',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. // 开营通知-查询开营通知详情
  10. queryNoticeById: {
  11. url: '/notice/queryNoticeById',
  12. method: 'GET',
  13. auth: true,
  14. },
  15. }
  16. export default api