notice.js 383 B

1234567891011121314151617181920212223
  1. import utils from "../js/utils.js";
  2. /**
  3. * 公告相关接口
  4. */
  5. module.exports = {
  6. /**
  7. * 获取列表
  8. * @returns {Promise<*>}
  9. */
  10. getNoticeList(handler, data = {}) {
  11. return utils.http(handler, 'notice/index', data)
  12. },
  13. /**
  14. * 获取详情
  15. * @returns {Promise<*>}
  16. */
  17. getNoticeDetail(handler, data = {}) {
  18. return utils.http(handler, 'notice/detail', data)
  19. },
  20. }